Converting the FileSystemObject's DateLastAccessed Property

Definition: Returns the date and time the file was last accessed.

DateLastAccessed

The LastAccessTime property of the file will give you the - well, yes, the time a file was last accessed. First get a reference to the file with the Get-Item cmdlet, then retrieve the LastAccessTime property:

(Get-Item c:\scripts\test.txt).LastAccessTime

See conversions of other FileSystemObject methods and properties.
Return to the VBScript to Windows PowerShell home page