From 34a865b484bee5e737d330eff6fc27c1e8e9133c Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 15 Apr 2019 01:00:39 +0100 Subject: [PATCH] Add FileAttributes.None for no attributes. --- Structs/Filesystems.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Structs/Filesystems.cs b/Structs/Filesystems.cs index 153f624b3..19eeb54b5 100644 --- a/Structs/Filesystems.cs +++ b/Structs/Filesystems.cs @@ -48,6 +48,8 @@ namespace DiscImageChef.CommonTypes.Structs [Flags] public enum FileAttributes : ulong { + /// File has no attributes + None = 0, /// File is an alias (Mac OS) Alias = 0x01, /// Indicates that the file can only be writable appended