ASP BuildPath 方法
ASP BuildPath 方法用于将文件名附加或添加到现有路径。它是文件系统对象的预定义方法。
句法:
[newpath=]FileSystemObject.BuildPath(path,name)
参数值:
- 路径:它指定一个现有路径,该路径将附加文件名。
- name:它指定将附加到现有路径的文件的名称。
下面的示例代码演示了账单路径方法
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.BuildPath("d:\myfiles","hello")
response.write(path)
set fs=nothing
%>
输出:
d:\myfiles\hello