ASP BuildPath 方法

定义和用法

BuildPath 方法向已有的路径添加名称。

语法:

  1. [newpath=]FileSystemObject.BuildPath(path,name)
参数 描述
path 必需的。要追加名称的路径。
name 必需的。追加到路径的名称。

实例

  1. <%
  2. dim fs,path
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. path=fs.BuildPath("c:\mydocuments","test")
  5. response.write(path)
  6. set fs=nothing
  7. %>

输出:

  1. c:\mydocuments\test