Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have create service by using FileSystemWatcher for watching files in the folder. It is working fine when there is any new file arriving in the Folder and it is detecting and doing rest of job as expected.

If there are files already present in Folder, How to Tell FileSystemWatcher to Use these Files?

If anyone has any idea, please share.
Posted
Updated 18-Sep-12 5:37am
v2

Add a handler for the Changed event on the watcher. If you've figured it out for Created I'm guessing you can figure out how to attach it.
 
Share this answer
 
Use WMI and poll the reqd folder :

string WMIQuery = "SELECT * FROM __InstanceCreationEvent WITHIN 10 " 
                                    + " WHERE TargetInstance ISA \"CIM_DirectoryContainsFile\" and "
                                    + " TargetInstance.GroupComponent= "
                                    + " \"Win32_Directory.Name='C:\\Test\\MyFolderToMonitor'\""; 


It will detect rename, create, modify file events..

You may also refer to inspire:
Directory Monitor Service controls SSIS Package Execution[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900