أحدث البرامج التعليمية وتطوير الشبكة
 

ASP الطريقة BuildPath


<كاملة FileSystemObject كائن المرجعي

طريقة BuildPath بإلحاق اسم لمسار موجود.

بناء الجملة

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

معامل وصف
path مطلوب. الطريق إلى إلحاق اسم ل
name مطلوب. الاسم إلى إلحاق الطريق

مثال

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

<كاملة FileSystemObject كائن المرجعي