ASP GetAbsolutePathName 方法


GetAbsolutePathName 方法为指定路径返回从根驱动器开始的完整路径。

语法

  1. FileSystemObject.GetAbsolutePathName(path)

参数 描述
path 必需的。需修改为完整路径的路径。

实例

假设当前目录是 c:\temp\test:

实例 1

  1. <%
    dim fs,path
    set fs=Server.CreateObject("Scripting.FileSystemObject")
    path=fs.GetAbsolutePathName("c:")
    response.write(path)
    %>

    输出:

    c:\temp\test

实例 2

  1. <%
    dim fs,path
    set fs=Server.CreateObject("Scripting.FileSystemObject")
    path=fs.GetAbsolutePathName("mydoc.txt")
    response.write(path)
    %>

    输出:

    c:\temp\test\mydoc.txt

实例 3

  1. <%
    dim fs,path
    set fs=Server.CreateObject("Scripting.FileSystemObject")
    path=fs.GetAbsolutePathName("private\mydoc.txt")
    response.write(path)
    %>

    输出:

    c:\temp\test\private\mydoc.txt