当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP FileSystem 属性

ASP
ASP Drive
ASP File
ASP Folder
ASP Dictionary
ASP ADO
ASP AdRotator
ASP BrowserCap
ASP Content Linking
ASP Content Rotator
ASP Quick Ref
ASP 摘要
ASP 实例

ASP FileSystem 属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 311 ::
收藏到网摘: n/a

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属性将返回下面属性中的一个:

  • FAT - for removable drives
    FAT – 可移动驱动器
  • CDFS - for CD-ROM drives
    CDFS – 光驱(CD-ROM)驱动器
  • FAT, FAT32 or NTFS - for hard disks on Windows 2000 or Windows NT
    FAT、FAT32、NTFS – Windows2000或WindowsNT系统上的硬盘
  • FAT or FAT32 - for hard disks on Windows 9x
    FAT、FAT32 – Windows9x系统上的硬盘

Syntax
语法

DriveObject.FileSystem

Example
举例

<%
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

登陆 | 还没注册?