ASP ShortPath 属性

asp shortpath 属性

file 对象参考手册 完整的 file 对象参考手册

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("path: " & f.path)
response.write("
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("path: " & fo.path)
response.write("
shortpath: " & fo.shortpath)
set fo=nothing
set fs=nothing
%>

输出:

path: c:\asp_test_web
shortpath: c:\asp_te~1

file 对象参考手册 完整的 file 对象参考手册
相关文章