I need to detect when either of the two file types is somehow implemented through the entire Windows file system.
As I understand it, the only way to do this without major slowdowns for the operating system is to create a file system filter driver?
Essentially, all I have to do is grab a copy of any doc (x) and pdf files that open. I decided to use this approach, as it was either, or use file monitors in C # that would not be effective for the entire drive.
My question is twofold, is there an easier way, and secondly, how could I just take a copy of each doc (x) / pdf file as it is accessed?
The solution needs to be deployed with the package that we are currently producing.
UPDATE
I am going to evaluate the observer of the file system by discussing it with people here, I think it is possible, that it can be acceptable, my concern is that I need to control the common user directories where the downloads will take place (like "C: \ Users \ SomeUser * ", as well as the temporary Outlook folder.
source
share