Exemple #1
0
 public static bool Hidden(this IFileSystemInfo fileSystemInfo)
 => fileSystemInfo.AttributeSet(FileAttributes.Hidden);
Exemple #2
0
 public static bool System(this IFileSystemInfo fileSystemInfo)
 => fileSystemInfo.AttributeSet(FileAttributes.System);
Exemple #3
0
 public static bool ReadOnly(this IFileSystemInfo fileSystemInfo)
 => fileSystemInfo.AttributeSet(FileAttributes.ReadOnly);