ASP BuildPath yöntemi

tanım ve kullanım

BuildPath yöntemi, mevcut yola isim ekler.

gramer:

[newpath=]FileSystemObject.BuildPath(path,name)
parametre tanım
path zorunlu. İsmi eklemek için kullanılacak yol.
name zorunlu. Yola eklenmesi gereken isim.

örnek

<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.BuildPath("c:\mydocuments","test")
response.write(path)
fs=nothing set
%>

Çıktı:

c:\mydocuments\test