<Referencia completa de objetos FileSystemObject
El método BuildPath añade un nombre a una ruta existente.
Sintaxis
[newpath=]FileSystemObject.BuildPath(path,name)
Parámetro | Descripción |
---|---|
path | Necesario. El camino para anexar un nombre a |
name | Necesario. El nombre que se añadirán a la ruta |
Ejemplo
<%
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
<Referencia completa de objetos FileSystemObject