 Object Menu
|

| DriveLetter |
| Type | Read-Only |
| Return Value Type | Character |
| Usage | object.GetDrive(Drive) |
| Description | Determines the drive letter associated with the drive. |
| Example | Code: drivename=''c:\'' Set fso = CreateObject(''Scripting.FileSystemObject'') set maindrive=fso.GetDrive(drivename) response.write maindrive.DriveLetterResult: c: |
|