 Object Menu
|

| AvailableSpace |
| Type | Read-Only |
| Return Value Type | Numerical |
| Usage | object.AvailableSpace(Drive) |
| Description | Determines the amount of free space left on the drive in bytes. |
| Example | Code: drivename=''c:\'' Set fso = CreateObject(''Scripting.FileSystemObject'') set maindrive=fso.GetDrive(drivename) response.write maindrive.AvailableSpaceResult: 16691032064 |
|