Gli ultimi tutorial di sviluppo web
 

ASP Metodo BuildPath


<Complete FileSystemObject Object Reference

Il metodo BuildPath aggiunge un nome ad un percorso esistente.

Sintassi

[newpath=]FileSystemObject.BuildPath(path,name)

Parametro Descrizione
path Necessario. Il percorso per aggiungere un nome alla
name Necessario. Il nome da aggiungere al percorso

Esempio

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

<Complete FileSystemObject Object Reference