Exemplo n.º 1
0
 private string MountVolume(string pDiskDevicePath, string pMountPoint)
 {
     DiskUtilityLib.Mount Mount = new DiskUtilityLib.Mount();
     return(Mount.HFS(pDiskDevicePath, pMountPoint));
 }
Exemplo n.º 2
0
 private string MountVolume(Partition pPartition)
 {
     DiskUtilityLib.Mount Mount = new DiskUtilityLib.Mount();
     return(Mount.HFS(pPartition.DiskDevicePath, pPartition.MountPoint));
 }