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