<Complete FileSystemObject Object Reference
Il metodo GetAbsolutePathName restituisce il percorso completo dalla principale dell'unità per il percorso specificato.
Sintassi
FileSystemObject.GetAbsolutePathName(path)
Parametro | Descrizione |
---|---|
path | Necessario. Il percorso per passare a un percorso completo |
Esempi
Si supponga che la directory corrente è C: \ temp \ test:esempio 1
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("c:")
response.write(path)
%>
Output:
c:\temp\test
esempio 2
<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("mydoc.txt")
response.write(path)
%>
Output:
c:\temp\test\mydoc.txt
esempio 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
<Complete FileSystemObject Object Reference