how to check files copy are started in folder in c#.net
how to check files copy are started in folder in c#.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Arpit JainPosted Aug 2, 2013, 5:46 AM
FileSystemWatcher fsw = new FileSystemWatcher(Path_to_watch);
add Created event
fsw.Changed += new FileSystemEventHandler(Changed);
Done.