Add FileAttributes.None for no attributes.

This commit is contained in:
2019-04-15 01:00:39 +01:00
parent bb72ced88a
commit 119250bbf2

View File

@@ -48,6 +48,8 @@ namespace DiscImageChef.CommonTypes.Structs
[Flags]
public enum FileAttributes : ulong
{
/// <summary>File has no attributes</summary>
None = 0,
/// <summary>File is an alias (Mac OS)</summary>
Alias = 0x01,
/// <summary>Indicates that the file can only be writable appended</summary>