黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP ShortPath 屬性

asp shortpath 屬性

file 對(duì)象參考手冊(cè) 完整的 file 對(duì)象參考手冊(cè)

shortpath 屬性用于返回指定文件或文件夾的短路徑(8.3 文件命名公約)。

語(yǔ)法

fileobject.shortpath

folderobject.shortpath

針對(duì) file 對(duì)象的實(shí)例

<%
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

針對(duì) folder 對(duì)象的實(shí)例

<%
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 對(duì)象參考手冊(cè) 完整的 file 對(duì)象參考手冊(cè)
相關(guān)文章