1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-24 18:48:01 +02:00
Beef/BeefLibs/corlib/src/System/IO/FileAttributes.bf
2019-08-23 11:56:54 -07:00

21 lines
335 B
Beef

using System;
namespace System.IO
{
// These correspond to Platform.BfpFileFlags
public enum FileAttributes
{
None = 0,
Normal = 1,
Directory = 2,
SymLink = 4,
Device = 8,
ReadOnly = 0x10,
Hidden = 0x20,
System = 0x40,
Temporary = 0x80,
Offline = 0x100,
Encrypted = 0x200,
Archive = 0x400,
}
}