Microsoft JScript
FileSystem Property |
Language Reference
Version 3 |
Returns the type of file system in use for the specified drive.
object.FileSystemThe object is always a Drive object.
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); }