 Object Menu
|

| IsReady |
| Type | Read-Only |
| Return Value Type | Boolean |
| Usage | object.IsReady(Drive) |
| Description | Determines if the information on the drive can be currently read or written. If the drive contains removeable media the value becomes true when readable media is placed in the drive. |
| Example | Code: drivename=''c:\'' Set fso = CreateObject(''Scripting.FileSystemObject'') set maindrive=fso.GetDrive(drivename) response.write maindrive.IsReadyResult: False |
|