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

ASP Path 屬性

asp path 屬性

file 對象參考手冊 完整的 file 對象參考手冊

path 屬性用于為指定的驅動器、文件或文件夾返回路徑。

語法

driveobject.path

fileobject.path

folderobject.path

針對 drive 對象的實例

<%
dim fs,d
set fs=server.createobject("scripting.filesystemobject")
set d=fs.getdrive("c:")
response.write("the path is " & d.path)
set d=nothing
set fs=nothing
%>

輸出:

the path is c:

針對 file 對象的實例

<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.getfile("c:\asp\test\test.asp")
response.write("the path is: " & f.path)
set f=nothing
set fs=nothing
%>

輸出:

the path is: c:\asp\test\test.asp

針對 folder 對象的實例

<%
dim fs,fo
set fs=server.createobject("scripting.filesystemobject")
set fo=fs.getfolder("c:\asp\test")
response.write("the path is: " & fo.path)
set fo=nothing
set fs=nothing
%>

輸出:

the path is: c:\asp\test

file 對象參考手冊 完整的 file 對象參考手冊
相關文章