From http://www.w3schools.com (Copyright Refsnes Data)

ASP FileSystem Property


Drive Object Reference 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:

Syntax

DriveObject.FileSystem

Example

<%
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


Drive Object Reference Complete Drive Object Reference

From http://www.w3schools.com (Copyright Refsnes Data)