From http://www.w3schools.com (Copyright Refsnes Data)
Complete Drive Object Reference
The FileSystem property returns the file system in use for a specified drive.
This property will return one of the following:
| DriveObject.FileSystem |
|
<% dim fs,d set fs=Server.CreateObject("Scripting.FileSystemObject") set d=fs.GetDrive("c:") Response.Write("The file system in use is: " & d.FileSystem) set d=nothing set fs=nothing %> Output: The file system in use is: NTFS |
Complete Drive Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)