FAT、FAT32 或 NTFS - 在 Windows 2000 或 Windows NT 上的硬盤驅(qū)動器
FAT 或 FAT32 - 在 Windows 9x 上的硬盤驅(qū)動器
語法
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
%>