Hi everybody. I'm implementing an application that use FileSystemWatcher to monitor the events of a local File System with C#.
The problem is that I should also know for my application even the user or the process who made a change, an access, created, deleted and so on a file or a directory. FileSystemWatcher just tell me: "there is an event of this type in this file/directory". Doesn't tell me who raise that event.
Is there something in C# giving these information? If not, any idea of how can I do to retrieve it?
Thank you in advance