(PWS4 IIS4 IIS5)
ShortPath — 従来の 8.3 形式のファイル名が必要なプログラムのために、短いパス名を返します。
構文
object.ShortPath
パラメータ
- object
- Folder オブジェクトを指定します。
戻り値
パス名を返します。
説明
パス中のディレクトリ名が8文字よりも長い場合、チルダ「~」を使用して8文字に短縮して返します。
例
JScript
1 2 3 4 5 6 7 8 9 10 | function ShowShortPath(filespec) { var fso, f, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFile(filespec); s = "パス名 : " + "" + f.Name; s += "" + "<br />"; s += "短いパス名 : " + "" + f.ShortPath + ""; return(s); } |
VBScript
1 2 3 4 5 6 7 8 | Function ShowShortPath(filespec) Dim fso, f, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFile(filespec) s = "パス名 : " & "" & UCase(f.Name) & "" & "<br />" s = s & "短いパス名 : " & f.ShortPath ShowShortPath = s End Function |