Derniers tutoriels de développement web
 

ASP Méthode Buildpath


<Complete FileSystemObject Référence objet

La méthode Buildpath un nom ajoute un chemin existant.

Syntaxe

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

Paramètre La description
path Champs obligatoires. Le chemin à ajouter un nom
name Champs obligatoires. Le nom à ajouter au chemin

Exemple

<%
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 Référence objet