我编写了一个应用程序来检查目录上的所有文件系统权限.
目录有许多访问规则(类型FileSystemAccessRule).
FileSystemAccessRule
每个访问规则都有一个属性FileSystemRights,它是一个标志枚举.
FileSystemRights
运行时,我会遇到一个FileSystemRights值268435456(以0x10000000十六进制表示).
268435456
0x10000000
这个值只是没有出现在枚举中!它实际上高于最高的单个标志值(Synchronize具有值0x100000).
Synchronize
0x100000
有谁知道这是什么?
.net security ntfs
.net ×1
ntfs ×1
security ×1