FileSystem

收藏:0   阅读:21

ASP FileSystem 属性


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
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!