Visual Basic Scripting Edition | Language Reference |
Returns the type of file system in use for the specified drive.
object.FileSystem
The object is always a Drive object.
Available return types include FAT, NTFS, and CDFS.
The following code illustrates the use of the FileSystem property:
Function ShowFileSystemType(drvspec)
Dim fso,d
Set fso = CreateObject("Scripting.FileSystemObject")
Set d = fso.GetDrive(drvspec)
ShowFileSystemType = d.FileSystem
End Function
AvailableSpace Property | DriveLetter Property | DriveType Property | FileSystemObject Object | FreeSpace Property | IsReady Property | Path Property | RootFolder Property | SerialNumber Property | ShareName Property | TotalSize Property | VolumeName Property
Applies To: Drive Object