I have an issue about mapped network drive.
I have 3 PCs: A, B and C. Each PC have a mapped network drive is Share2All(\Server)Z:, this drive point to a common folder on server, is Share2All folder.
I have an application which using FileSystemWatcher to monitor files on PC. This application is running on 3 PCs: A, B and C.
On A PC, when I edit and save a file which has path: Z:\test.txt (on mapped network drive), the changed event (of FileSystemWatcher) appear at same A, B and C PC.
I want, when I edit and save file Z:\test.txt on A PC, the changed event only appear on A PC.
To do this, I try to determine the last user who modified the file Z:\test.txt (is user on A PC), but it could not be.
Can anyone help me determine the last user who modified the file on mapped network drive, or give me any solution for my issue?
Thanks!