I am trying to run a file watcher over some server path using windows service. I am using my windows login credential to run the service, and am able to access this "someServerPath" from my login. But when i do that from the filewatcher it throws "The directory name \someServerPath is invalid" exception.
var fileWatcher=new FileSystemWatcher(GetServerPath()) {
NotifyFilter=(NotifyFilters.LastWrite|NotifyFilters.FileName),
EnableRaisingEvents=true,
IncludeSubdirectories=true
};
//Exception: The directory name \\someServerPath is invalid" exception.
public static string GetServerPath() {
return string.Format(@"\\{0}", FileServer1);
}
Can anyone please help me with this?
Thanks in advance.
Added more information. People were taking in wrong sense.
