Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know if there any methods for me to record information of who have accessed and made any changes to my file in the file server ? This application is made for local use only, and I must use C#Express since I can't afford a professional or ultimate version. The C# Express doesn't have WCF enabled features at all. But I am not going to do anything related to web services. Thank you for your ideas.

share|improve this question
Are these changes to be made via your program? Or is this program suppose to monitor normal file changes via windows file browsing. If its via your program, Have them logon and/or use their windows logon as an ID and store the ID of who carries out the given task. – Doomsknight May 28 '12 at 9:00
FileSystemWatcher is a good start I would think... fairly easy to implement: msdn.microsoft.com/en-us/library/… – John Bartels May 29 '12 at 0:21
As @JohnBartels has stated, it is a good place to start. Just be careful of trying to use the file while something is still writing to it. – jonnyGold Jun 1 '12 at 2:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.