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

I am developing file monitoring application in WPF and C#. Now i want to monitor files from given directory while my application running in background. I am going to provide directory name at the first time. Then i want to monitor files from that directory whether they are open or currently accessing or modified.

Is it possible in WPF? Is there any link?

share|improve this question

2 Answers

up vote 0 down vote accepted

You probably may want to write a windows service using FileSystemWatcher.

share|improve this answer
Thanks a lot mate! – omkar patade Oct 20 '12 at 6:29
@omkarpatade: Glad it helped! – abatishchev Oct 20 '12 at 14:40

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.