File.GetLastAccessTime Method
Assembly: mscorlib (in mscorlib.dll)
public static DateTime GetLastAccessTime ( String path )
public static function GetLastAccessTime ( path : String ) : DateTime
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. | |
| The specified path was not found. | |
| path is in an invalid format. |
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 an example of using this method, see the Example section. The following table lists examples of other typical or related I/O tasks.
| To do this... | See the example in this topic... |
|---|---|
| Write to a text file. | |
| Read from a text file. | |
| Append text to a file. | |
| Rename or move a file. |
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 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.