DriveInfoIsReady Property |
Gets a value indicating whether a drive is ready.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public bool IsReady { get; }
Public ReadOnly Property IsReady As Boolean
Get
public:
property bool IsReady {
bool get ();
}
member IsReady : bool with get
Return Value
Type:
Boolean if the drive is ready; otherwise,
.
Remarks
IsReady indicates whether a drive is ready. For example, it indicates whether a CD is in a CD drive or whether
a removable storage device is ready for read/write operations. If you do not test whether a drive is ready, and
it is not ready, querying the drive using DriveInfo will raise an IOException.
Do not rely on IsReady() to avoid catching exceptions from other members such as TotalSize, TotalFreeSpace, and DriveFormat.
Between the time that your code checks IsReady and then accesses one of the other properties
(even if the access occurs immediately after the check), a drive may have been disconnected or a disk may have been removed.
See Also