<Completa FileSystemObject Object Reference
O método Buildpath acrescenta um nome a um caminho existente.
Sintaxe
[newpath=]FileSystemObject.BuildPath(path,name)
Parâmetro | Descrição |
---|---|
path | Requeridos. O caminho para anexar um nome para |
name | Requeridos. O nome para anexar ao caminho |
Exemplo
<%
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
<Completa FileSystemObject Object Reference