ASP ShortPath 属性
asp shortpath 属性
完整的 file 对象参考手册shortpath 属性用于返回指定文件或文件夹的短路径(8.3 文件命名公约)。
语法
fileobject.shortpath
folderobject.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
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
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 对象参考手册
相关文章
- ASP Content Linking
- ASP Content Rotator
- ASP – AJAX 与 ASP
- ASP 语法
- ASP Close 方法
- ASP Write 方法
- ASP DateCreated 属性
- ASP Key 属性
- ASP Add 方法
- ASP RemoveAll 方法
- ASP Cookies 集合
- ASP Expires 属性
- ASP Status 属性
- ASP Flush 方法
- ASP Contents 集合
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP SessionID 属性
- ASP CreateObject 方法
- ASP Drives 属性
- ASP FileExists 方法