| Home | All functions | Categories |
vuIsDriveReady(*CSTRING), Signed
Checks whether the specified drive is ready for use (e.g., contains media and is accessible).
| Parameter | Data Type | Description |
|---|---|---|
| DriveLetter | CSTRING(2) | Uppercase single-character drive letter |
1 (True) if the drive is ready, 0 (False) otherwise.
DriveLetter = 'A'
IF vuIsDriveReady(DriveLetter) = 1
MESSAGE('The floppy drive contains a disk and is ready for use')
ELSE
MESSAGE('Drive is not ready')
END
| Home | All functions | Categories |