Ultimele tutoriale de dezvoltare web
 

ASP Metoda GetAbsolutePathName


<Complete FileSystemObject obiect de referință

Metoda GetAbsolutePathName returnează calea completă din rădăcina unității pentru calea specificată.

Sintaxă

FileSystemObject.GetAbsolutePathName(path)

Parametru Descriere
path Necesar. Calea de a trece la o cale completă

Exemple

Să presupunem că directorul curent este c: \ temp \ test:

Exemplul 1

<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("c:")
response.write(path)
%>

Output:

c:\temp\test

Exemplul 2

<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("mydoc.txt")
response.write(path)
%>

Output:

c:\temp\test\mydoc.txt

Exemplul 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 obiect de referință