I have prblem with my C# application. I need to move file to my server, but my server is secured with user name and password. Way is like this:
\\Server\Folder
And code is this:
...
File.Move(args[0], "\\\\Server\\Folder");
...
How can I move file there? Please help me.
Use impersonation: