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 对象参考手册
相关文章