Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
11answers
1k views

Directory.GetFiles keeping the last access time

It appears that Directory.GetFiles() in C# modifies the Last access date of a file. I've googled for hours and can't seem to find a work around for this issue. Is there anyway to keep all the MAC ...
1
vote
1answer
49 views

.Net File.GetLastAccessTime updates Last Access Time of file

We are using below line to get Last access date and time of the file. DateTime dtLastAccesstime = File.GetLastAccessTime(sFilePath); But we are facing strange problem, the above call itself ...
1
vote
3answers
470 views

Avoid updating last-accessed date/time when reading a file

We're building a Windows-based application that traverses a directory structure recursively, looking for files that meet certain criteria and then doing some processing on them. In order to decide ...
1
vote
3answers
607 views

LastAccess Time is incorrect

every time i create a FileInfo object and access it's lastaccesstime property, it's always a few minutes off. the file property window remains constant, however the application shows that it is ...
0
votes
4answers
119 views

PHP script to delete thousands of .jpg images?

My weak shared web host doesn't support cron or perl and I often need to delete thousands of .jpg images from certain folders. The images are uploaded from webcams. I'm wondering if there is a simple ...
0
votes
1answer
205 views

How to get LastActivityDate when using Active Directory Setup in a .net application

I have a requirement to show a list of all users along with the Last Activity Date. The application is .Net based. I found the MemberShip class provides the Last Activity date. However, this does not ...