以字符串的形式返回指定驱动器的状态.
DriveStatus ( "路径" )
路径 | 要获得相应信息的驱动器路径. |
返回值 | 解释 |
UNKNOWN | 指定驱动器可能尚未被格式化(RAW). |
READY | 通常是硬盘分区或那些含有可移动媒体的驱动器. |
NOTREADY | 通常是未含任何媒体的软驱或CD驱动器. |
INVALID | 说明指定驱动器并不存在或映射的网络驱动器无法访问. |
Local $sStatus = DriveStatus(@HomeDrive & "\") ; Find the status of the home drive, generally this is the C:\ drive.
MsgBox(4096, "Status", $sStatus)