ASP Path 属性
❮ 文件夹对象完整参考
Path 属性用于返回指定驱动器、文件或文件夹的路径。
语法
DriveObject.Path
FileObject.Path
FolderObject.Path
驱动器对象的示例
<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
Response.Write("路径是 " & d.Path)
set d=nothing
set fs=nothing
%>
输出
路径是 C
文件的示例
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\asp\test\test.asp")
Response.Write("路径是: " & f.Path)
set f=nothing
set fs=nothing
%>
输出
路径是: C:\asp\test\test.asp
文件夹的示例
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\asp\test")
Response.Write("路径是: " & fo.Path)
set fo=nothing
set fs=nothing
%>
输出
路径是: C:\asp\test
❮ 文件夹对象完整参考