 Object Menu
|

| FileSystem |
| Type | Read-Only |
| Return Value Type | String |
| Usage | object.FileSystem(Drive) |
| Description | Returns the type of filesystem in which the drive is formatted (FAT16, FAT32, NTFS). |
| Example | Code: drivename=''c:\'' Set fso = CreateObject(''Scripting.FileSystemObject'') set maindrive=fso.GetDrive(drivename) response.write maindrive.FileSystemResult: NTFS |
|