Najnowsze tutoriale tworzenie stron internetowych
 

ASP Metoda BuildPath


<Pełna FileSystemObject Object Reference

Metoda BuildPath dołącza nazwę istniejącej ścieżki.

Składnia

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

Parametr Opis
path Wymagany. Ścieżka dołączyć nazwę
name Wymagany. Nazwa dołączyć do ścieżki

Przykład

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

<Pełna FileSystemObject Object Reference