コード例 #1
0
ファイル: UnixFileSystemInfo.cs プロジェクト: zzwwqqq/mono
 internal static bool IsSet(Native.FilePermissions mode, Native.FilePermissions type)
 {
     return((mode & type) == type);
 }
コード例 #2
0
ファイル: UnixFileSystemInfo.cs プロジェクト: zzwwqqq/mono
 internal static bool IsFileType(Native.FilePermissions mode, Native.FilePermissions type)
 {
     return((mode & Native.FilePermissions.S_IFMT) == type);
 }