Example #1
0
 internal static bool IsSet(Native.FilePermissions mode, Native.FilePermissions type)
 {
     return((mode & type) == type);
 }
Example #2
0
 internal static bool IsFileType(Native.FilePermissions mode, Native.FilePermissions type)
 {
     return((mode & Native.FilePermissions.S_IFMT) == type);
 }