saving to virtual path

B

bombdrop

trying to save a file to a virtual path

Code:
StreamWriter sw = new
StreamWriter(@"\vm-extranet\c$\Inetpub\wwwroot\eclaim\Eclaim.csv");

get error can not find path, any one know what i need to do?
 
G

Guest

bombdrop,
try adding an additional backslash before the machine name, e.g.:

StreamWriter(@"\\vm-extranet\c$\Inetpub\wwwroot\eclaim\Eclaim.csv");

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top