FileSystem

(PWS4 IIS4 IIS5)
FileSystem — 指定されたドライブに使用されているファイル システムの種類を返します。

構文

object.FileSystem

パラメータ

object
Drive オブジェクトを指定します。

戻り値

ドライブのファイルシステムを文字列で返します。

説明

取得される可能性のある種類には、FAT、NTFS、CDFS があります。

JScript

1
2
3
4
5
6
7
8
function ShowFileSystemType(drvPath)
{
   var fso,d, s;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   d = fso.GetDrive(drvPath);
   s = d.FileSystem;
   return(s);
}

VBScript

1
2
3
4
5
6
Function ShowFileSystemType(drvspec)
   Dim fso,d
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set d = fso.GetDrive(drvspec)
   ShowFileSystemType = d.FileSystem
End Function