当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP FileSystem 属性
The FileSystem property returns the file system in use for a specified drive.
ASP FileSystem属性的作用是返回指定驱动器的文件系统。如:FAT、NTFS。
This property will return one of the following:
ASP属性将返回下面属性中的一个:
| 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
%> Output: The file system in use is: FAT |
评论 (0) All