中国最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2

ASP 教程

ASP BuildPath 方法

阅读 (1833)

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 对象参考手册
关闭
程序员人生