<Object Reference FileSystemObject Lengkap
Metode GetAbsolutePathName jalur lengkap dari akar drive untuk jalan yang ditentukan.
Sintaksis
FileSystemObject.GetAbsolutePathName(path)
Parameter | Deskripsi |
---|---|
path | Wajib. jalan untuk mengubah ke jalur lengkap |
contoh
Asumsikan bahwa direktori saat ini c: \ temp \ test:contoh 1
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("c:")
response.write(path)
%>
Output:
c:\temp\test
contoh 2
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("mydoc.txt")
response.write(path)
%>
Output:
c:\temp\test\mydoc.txt
contoh 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
<Object Reference FileSystemObject Lengkap