ASP FileSystem 属性

定义和用法

FileSystem 属性返回指定的驱动器所使用的文件系统。

此属性可返回下列的值:

  • FAT - 可移动驱动器
  • CDFS - CD-ROM 驱动器
  • FAT, FAT32 或 NTFS - 在 Windows 2000 或 Windows NT 上的硬盘驱动器
  • FAT 或 FAT32 - 在 Windows 9x 上的硬盘驱动器

语法:

  1. DriveObject.FileSystem

实例

  1. <%
  2. dim fs,d
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. set d=fs.GetDrive("c:")
  5. Response.Write("The file system in use is: " & d.FileSystem)
  6. set d=nothing
  7. set fs=nothing
  8. %>

输出:

  1. The file system in use is: FAT