ASP ShortPath 属性

定義と用法

ShortPath 属性は、指定されたファイルやフォルダーの短パスを返すために使用されます。(8.3 ファイル名の命名規則)。

文法:

FileObject.ShortPath
FolderObject.ShortPath

File オブジェクトの例

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\asp_test_web\hitcounterfile.txt")
Response.Write("パス: " & f.Path)
Response.Write("<br />ShortPath: " & f.ShortPath)
set f=nothing
set fs=nothing
%>

出力:

Path: C:\asp_test_web\hitcounterfile.txt
ShortPath: C:\ASP_TE~1\HITCOU~1.TXT

Folder オブジェクトの例

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\asp_test_web")
Response.Write("パス: " & fo.Path)
Response.Write("<br />ShortPath: " & fo.ShortPath)
set fo=nothing
set fs=nothing
%>

出力:

Path: C:\asp_test_web
ShortPath: C:\ASP_TE~1