GetDriveName

(PWS4 IIS4 IIS5)
GetDriveName — 指定されたパスのドライブ名を返します。

構文

object.GetDriveName( path )

パラメータ

object
FileSystemObject オブジェクトを指定します。
path
ドライブ名を取り出すパスを指定します。

戻り値

パスのドライブ名を返します。

説明

ドライブが判断できない場合は、長さ 0 の文字列 (“”) が返されます。

JScript

1
2
3
4
5
6
7
function GetDriveLetter(path)
{
   var fso, s ="";
   fso = new ActiveXObject("Scripting.FileSystemObject");
   s += fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(path)));
   return(s);
}

VBScript

1
2
3
4
5
Function GetAName(DriveSpec)
   Dim fso
   Set fso = CreateObject("Scripting.FileSystemObject")
   GetAName = fso.GetDriveName(Drivespec)
End Function