Ultimele tutoriale de dezvoltare web
 

ASP DateLastAccessed Property


<Complete referință Obiect fișier

Proprietatea DateLastAccessed este utilizat pentru a reveni data și ora când un fișier specificat sau un dosar a fost accesată ultima dată.

Sintaxă

FileObject.DateLastAccessed

FolderObject.DateLastAccessed

Exemplu pentru obiectul fișier

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
Response.Write("File last accessed on: ")
Response.Write(f.DateLastAccessed)
set f=nothing
set fs=nothing
%>

Output:

File last accessed on: 10/29/2001 10:21:23 AM

Exemplu pentru obiect Folder

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
Response.Write("Folder last accessed on: ")
Response.Write(fo.DateLastAccessed)
set fo=nothing
set fs=nothing
%>

Output:

Folder last accessed on: 9/19/2001 10:01:19 AM

<Complete referință Obiect fișier