©
本文檔使用 php中文網手册 發布
FileSystem 属性返回指定的驱动器所使用的文件系统。
此属性可返回下列值之一:
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
%>
输出:
The file system in use is: NTFS