Previous PageNext Page

7.13.4 FileSystem Property

Returns the type of file system in use for the specified drive. This property is not available under UNIX.
 

Syntax

object.FileSystem

object
A Drive object.

Remarks

Available return types include FAT, NTFS, and CDFS.
 
The following code illustrates the use of the FileSystem property:
 

function ShowFileSystemType(drvPath)

{

var fs,d, s;

fs = new ActiveXObject("Scripting.FileSystemObject");

d = fs.GetDrive(drvPath);

s = d.FileSystem;

Response.Write(s);

}


Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page