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

ASP
ASP 介绍
ASP Install
ASP 语法
ASP 变量
ASP Procedures
ASP Forms
ASP Cookies
ASP Session
ASP Application
ASP #include
ASP Global.asa
ASP Send e-mail
ASP Response
ASP Request
ASP Application
ASP Session
ASP Server
ASP Error
ASP FileSystem
ASP TextStream

ASP FileSystem 属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 310 ::
收藏到网摘: 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

登陆 | 还没注册?