ASP Path 屬性
asp path 屬性

path 屬性用于為指定的驅動器、文件或文件夾返回路徑。
語法
driveobject.path
fileobject.path
folderobject.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:
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
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
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

相關文章
- ASP Cookies
- ASP File 對象
- ASP Folder 對象
- ASP ADO
- ASP Content Rotator
- ASP Column 屬性
- ASP Write 方法
- ASP ShortName 屬性
- ASP Move 方法
- ASP Keys 方法
- ASP Remove 方法
- ASP CacheControl 屬性
- ASP Charset 屬性
- ASP IsClientConnected 屬性
- ASP BinaryWrite 方法
- ASP Form 集合
- ASP TotalBytes 屬性
- ASP SessionID 屬性
- ASP Execute 方法
- ASP MoveFile 方法