DiskDeviceDismountVolumeFilesystem Method |
Locks and dismounts filesystem on a volume. Upon successful return, further access to the device
can only be done through this device object instance until it is either closed (disposed) or lock is
released on the underlying handle.
Namespace:
Arsenal.ImageMounter
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public void DismountVolumeFilesystem(
bool Force
)
Public Sub DismountVolumeFilesystem (
Force As Boolean
)
public:
void DismountVolumeFilesystem(
bool Force
)
member DismountVolumeFilesystem :
Force : bool -> unit
Parameters
- Force
- Type: SystemBoolean
Indicates if True that volume should be immediately dismounted even if it
cannot be locked. This causes all open handles to files on the volume to become invalid. If False,
successful lock (no other open handles) is required before attempting to dismount filesystem.
See Also