BuildPath
Il metodo BuildPath aggiunge un nome ad un percorso esistente. Ammette due parametri:
- path - percorso a cui aggiungere un nome
- name - nome da aggiungere al percorso
Dim fs, path
Set fs = Server.CreateObject("Scripting.FileSystemObject")
path = fs.BuildPath("c:\web\miosito","prova")
Response.Write(path)
Set fs = Nothing
L'output prodotto sarà:
c:\web\miosito\prova
');







