I'm creating a simple program that manages some files and that program must keep track of file movements made by user.
(I'm not worried at this point about catching all running Windos Explorer's windows and about keeping the program always activated in the tray bar, but I might ask that later in another question)
So, what I need is simply:
- Launch Windows Explorer Programatically
- Monitor all file movements, creations and exclusions (made by user inside that window)
Is there an API to use with C#?
P.S: It's a Winforms application, so if there are other ways of doing this, they would be appreciated as well.
Thank you.