Hi everyone,
I'm having problems creating a folder on a mapped network drive. The code works fine for a local drive but I get the following error when attempting to run the code on a mapped drive.
Error: Could not find a part of the path "R:\".
Here's a snippet of the code that I am using.
Anyone have any ideas or come across this problem before?
Keith
I'm having problems creating a folder on a mapped network drive. The code works fine for a local drive but I get the following error when attempting to run the code on a mapped drive.
Error: Could not find a part of the path "R:\".
Here's a snippet of the code that I am using.
Code:
DirectoryInfo objFolder = new DirectoryInfo ("R:\\Test");
objFolder.Create ();
Anyone have any ideas or come across this problem before?
Keith