<كاملة FileSystemObject كائن المرجعي
طريقة GetAbsolutePathName إرجاع المسار الكامل من جذر محرك الأقراص عن المسار المحدد.
بناء الجملة
FileSystemObject.GetAbsolutePathName(path)
معامل | وصف |
---|---|
path | مطلوب. الطريق لتغيير لمسار كامل |
أمثلة
نفترض أن الدليل الحالي هو C: \ TEMP \ الاختبار:مثال 1
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("c:")
response.write(path)
%>
Output:
c:\temp\test
مثال 2
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("mydoc.txt")
response.write(path)
%>
Output:
c:\temp\test\mydoc.txt
مثال 3
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("private\mydoc.txt")
response.write(path)
%>
Output:
c:\temp\test\private\mydoc.txt
<كاملة FileSystemObject كائن المرجعي