8.7.4 FileSystem Property

Returns the type of file system in use for the specified drive. This property is not currently supported on UNIX.
Syntax
object.FileSystem
Arguments
- object
- A Drive object.
Remarks
Available return types include FAT, NTFS, and CDFS.
The following code illustrates the use of the FileSystem property:
Sub ShowFileSystemType
Dim fs,d, s
Set fs = CreateObject("Scripting.FileSystemObject")
Set d = fs.GetDrive("e:")
s = d.FileSystem
Response.Write s
End Sub
Copyright © 2000 Chili!Soft
|