File.GetLastAccessTime Method
Assembly: mscorlib (in mscorlib.dll)
public static DateTime GetLastAccessTime ( String path )
public static function GetLastAccessTime ( path : String ) : DateTime
Not applicable.
Parameters
- path
The file or directory for which to obtain access date and time information.
Return Value
A DateTime structure set to the date and time that the specified file or directory was last accessed. This value is expressed in local time.| Exception type | Condition |
|---|---|
| The caller does not have the required permission. | |
| path is a zero-length string, contains only white space, or contains one or more invalid characters as defined by InvalidPathChars. | |
| path is a null reference (Nothing in Visual Basic). | |
| The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. | |
| path is in an invalid format. |
If the file described in the path parameter does not exist, this method returns 12:00 midnight, January 1, 1601 A.D. (C.E.) Coordinated Universal Time (UTC), adjusted to local time.
The path parameter is permitted to specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory. To obtain the current working directory, see GetCurrentDirectory.
For a list of common I/O tasks, see Common I/O Tasks.
The following example demonstrates GetLastAccessTime.
using System; using System.IO; class Test { public static void Main() { try { string path = @"c:\Temp\MyTest.txt"; if (!File.Exists(path)) { File.Create(path); } File.SetLastAccessTime(path, new DateTime(1985,5,4)); // Get the creation time of a well-known directory. DateTime dt = File.GetLastAccessTime(path); Console.WriteLine("The last access time for this file was {0}.", dt); // Update the last access time. File.SetLastAccessTime(path, DateTime.Now); dt = File.GetLastAccessTime(path); Console.WriteLine("The last access time for this file was {0}.", dt); } catch (Exception e) { Console.WriteLine("The process failed: {0}", e.ToString()); } } }
import System.*;
import System.IO.*;
class Test
{
public static void main(String[] args)
{
try {
String path = "c:\\Temp\\MyTest.txt";
if (!(File.Exists(path))) {
File.Create(path);
}
File.SetLastAccessTime(path, new DateTime(1985, 5, 4));
// Get the creation time of a well-known directory.
DateTime dt = File.GetLastAccessTime(path);
Console.WriteLine("The last access time for this file was {0}.",
dt);
// Update the last access time.
File.SetLastAccessTime(path, DateTime.get_Now());
dt = File.GetLastAccessTime(path);
Console.WriteLine("The last access time for this file was {0}.",
dt);
}
catch (System.Exception e) {
Console.WriteLine("The process failed: {0}", e.ToString());
}
} //main
} //Test
- FileIOPermission for reading from the specified file. Associated enumeration: FileIOPermissionAccess.Read
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.