ASP GetAbsolutePathName 方法
最后更新于:2022-03-26 23:43:47
ASP GetAbsolutePathName 方法
GetAbsolutePathName 方法为指定路径返回从根驱动器开始的完整路径。
语法
FileSystemObject.GetAbsolutePathName(path)
参数 | 描述 |
---|---|
path | 必需的。需修改为完整路径的路径。 |
实例
假设当前目录是 c:\temp\test:
实例 1
<%
dim fs,path
set fs=Server.CreateObject(“Scripting.FileSystemObject”)
path=fs.GetAbsolutePathName(“c:”)
response.write(path)
%>
输出:
c:\temp\test
实例 2
<%
dim fs,path
set fs=Server.CreateObject(“Scripting.FileSystemObject”)
path=fs.GetAbsolutePathName(“mydoc.txt”)
response.write(path)
%>
输出:
c:\temp\test\mydoc.txt
实例 3
<%
dim fs,path
set fs=Server.CreateObject(“Scripting.FileSystemObject”)
path=fs.GetAbsolutePathName(“private\mydoc.txt”)
response.write(path)
%>
输出:
c:\temp\test\private\mydoc.txt