file class : LastAccessTime(string) setter

Description

Sets a string that indicates the date and time when the file was last accessed.

Syntax

fileInstance.LastAccessTime = value

Assigned value

ClassDescription
stringThe date and time when the file was last accessed.

Return value

None

Sample code

1:

file f = new file("c:\somewhere...");

2:

f.LastAccessTime = "3/04/2016 4:13:00";

Notes

It's a wrapper of the System.IO.FileInfo.LastAccessTime property.

The assigned value need to be a string that can convert to the C#'s DateTime type.

Links for reference

Copyright © Cooker All rights reserved.