vote up 0 vote down star

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.

flag

44% accept rate

4 Answers

vote up 3 vote down check

I have projects using the FileSystemWatcher object monitoring UNC paths without any issues.

My guess from looking at your code example may be that you are pointing the watcher at the root share of the server (//servername/) which may not be a valid file system share? I know it returns things like printers, scheduled tasks, etc. in windows explorer.

Try pointing the watcher to a share beneath the root - something like //servername/c$/ would be a good test example if you have remote administrative rights on the server.

link|flag
Thanks. This appears to be the problem here. – Amby Jun 7 at 15:58
vote up 5 vote down

With regards to the updated question, I agree that you probably need to specify a valid share, rather than just the remote server name.

[Update] Fixed previous question about the exception with this:

specify the name as @"\\someServerPath"

The \ is being escaped as a single \

When you prefix the string with an @ symbol, it doesn't process the escape sequences.

link|flag
This one sounds right, but I would assume the path is actually a variable that is read in from a config file or database. Maybe he should show us the actual code ... – flipdoubt Jun 6 at 19:36
Ofcourse i am doing the same. Also, i am using @"\\path" before the variable which returns this path. – Amby Jun 6 at 20:18
Updated my code, hope i get a better solution now. – Amby Jun 6 at 20:23
vote up 0 vote down

Is there any particular reason you aren't running the FileSystemWatcher on the physical machine that has the directory you want to watch?

link|flag
Its a windows service that run on a mail server and reads files from different location over network. – Amby Jun 6 at 20:23
edit: main* server – Amby Jun 6 at 20:24
cant you have the other servers "send" thier files to the main one? – Neil N Jun 7 at 1:00
Oh come on man!!. the reason we go for different servers because we want to delegate different responsibilities and level of access to each. Why would i duplicate data across different servers?. Anyhow, its getting to be a different conversation altogether. Thanks for the interest. – Amby Jun 7 at 14:08
Ya I understand it's not ideal to have the service replicated, but in this case, I think its a better option. You could potentially have a "master" service on the main server that is the permissions/security layer that handles all incoming files – Neil N Jun 7 at 14:33
vote up 0 vote down

You can't use directory watches over network shares, this is a limitation of the OS, not of .NET.

link|flag
you mean to say, file watcher (because of OS limitation) can not watch over a directory which is physically on some other machine? – Amby Jun 6 at 20:55
I have successfully used filewatcher over a mapped path of the same machine. I mean, filewatcher watching over "\\server\SharedFolder" , while the filles are in "C:\serviceFolder\SharedFolder". This case works fine, the difference here is that both are pointing to same machine, unlike in the example given above. Is that the problem?? – Amby Jun 6 at 21:00
It's trying to give you a hint here - just because you can trick the warning by using mapped drives doesn't mean your watches will actually work. – Paul Betts Jun 6 at 21:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.