?
? ????? PHP ??? ???? ??? ?? ??
FileSystem 屬性返回指定的驅(qū)動器所使用的文件系統(tǒng)。
此屬性可返回下列值之一:
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