ASP Drive.FileSystem 属性
ASP Drive.FileSystem 属性用于返回用于特定驱动器的文件系统的名称。它返回与其文件系统相对应的以下值之一。
- FAT:这用于可移动驱动器。
- CDFS:这用于 CD-ROM 驱动器。
- FAT、FAT32或 NTFS:这用于 Windows 2000 或 Windows NT 上的硬盘。
- FAT 或 FAT32:这用于 Windows 9x 上的硬盘。
句法:
DriveObject.FileSystem
示例:下面的代码说明了 ASP Drive.FileSystem 属性。
ASP
<%
dim fs,dr
set fs=Server.CreateObject("Scripting.FileSystemObject")
'Getting the drive to be checked
set dr=fs.GetDrive("d:")
'Getting the file system of the drive
Response.Write("The file system in use is: " & dr.FileSystem)
set dr=nothing
set fs=nothing
%>
输出:
The file system in use is: NTFS