最新のWeb開発のチュートリアル
 

ASP ShortName Property


<完全なフォルダオブジェクト参照

短縮名プロパティが指定したファイルまたはフォルダ(8.3命名規則)の短い名前を返すために使用されます。

構文

FileObject.ShortName

FolderObject.ShortName

Fileオブジェクトのための例

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\hitcounterfile.txt"))
Response.Write("Name: " & f.Name)
Response.Write("<br>ShortName: " & f.ShortName)
set f=nothing
set fs=nothing
%>

Output:

Name: hitcounterfile.txt
ShortName: HITCOU~1.TXT

Folderオブジェクトのための例

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\asp_test_web")
Response.Write("Name: " & fo.Name)
Response.Write("<br>ShortName: " & fo.ShortName)
set fo=nothing
set fs=nothing
%>

Output:

Name: asp_test_web
ShortName: ASP_TE~1

<完全なフォルダオブジェクト参照