最新的Web开发教程
 

ASP构建路径方法


<完整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
%>

Output:

c:\mydocuments\test

<完整FileSystemObject对象参考