hello family,
how can I get the file info like the date?
@Yoichi
Can anyone tell me, please
Thanks
Chethan P
hello family,
how can I get the file info like the date?
@Yoichi
Can anyone tell me, please
Thanks
Chethan P
Hi,
There are 2 ways to achieve it.
System.Io.File.GetLastWriteTime
methodfor example
fi = new FileInfo("C:\temp\test.txt")
then, fi.LastAccessTime
returns last access time
Regards,