monitor more than one file using file watcher class object

deepak

New member
Joined
Apr 17, 2006
Messages
2
Programming Experience
Beginner
hello all members,

i am working on a project for file/folder monitoring. i am using file watcher class for this purpose. i want to monitor more than one folder/file . it is working for one folder/file .
so please help me how i can achieve this . ... i need early reply ..
 
A FileSystemWatcher will monitor the initial path and optionally subdirectories for given file filter.
If you need to add paths you have to add FileSystemWatchers, make an array or collection of them.
 
Back
Top