ASP FileSystem 属性

ASP Drive 对象参考手册


定义和用法

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: FAT


ASP Drive 对象参考手册

粤ICP备11097351号-1