public static uint CTL_CODE(DEVICE_TYPE deviceType, ushort function, IOMethod method, IOAccess access) =>
 CTL_CODE((ushort)deviceType, function, (byte)method, (byte)access);
 public DiskDirectory(string path, IOAccess access)
 {
     _path  = new UPath(PATH_FORMAT, path);
     Access = access;
 }
Exemple #3
0
 public DiskFile(string path, IOAccess access)
 {
     _path  = path;
     Access = access;
 }