ASP ShortPath 属性
❮ 文件对象完整参考
ShortPath 属性用于返回指定文件或文件夹的短路径(8.3 命名约定)。
语法
FileObject.ShortPath
FolderObject.ShortPath
文件对象的示例
<%
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>短路径: " & f.ShortPath)
set f=nothing
set fs=nothing
%>
输出
路径: C:\asp_test_web\hitcounterfile.txt
短路径: C:\ASP_TE~1\HITCOU~1.TXT
文件夹对象的示例
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\asp_test_web")
Response.Write("路径: " & fo.Path)
Response.Write("<br>短路径: " & fo.ShortPath)
set fo=nothing
set fs=nothing
%>
输出
路径: C:\asp_test_web
短路径: C:\ASP_TE~1
❮ 文件对象完整参考