ASP BuildPath 方法

asp buildpath 方法

filesystemobject 对象参考手册 完整的 filesystemobject 对象参考手册

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

语法

[newpath=]filesystemobject.buildpath(path,name)

参数 描述
path 必需的。要追加名称的路径。
name 必需的。追加到路径的名称。

实例

<%
dim fs,path
set fs=server.createobject("scripting.filesystemobject")
path=fs.buildpath("c:\mydocuments","test")
response.write(path)
set fs=nothing
%>

输出:

c:\mydocuments\test

filesystemobject 对象参考手册 完整的 filesystemobject 对象参考手册
相关文章