I want to create a folder and upload the doc to the server.
I put this code at app.config but it show error could not found a part of the path.
Or is there any other ways to upload doc to server?
<configuration> .... <appSettings> <add key="DocumentVault" value="\\10.100.100.10\C$\SomePath\SomeWhere\Else\"/> </appSettings> .... </configuration>
On a network you must share a folder in the remote machine and then access it
Example if the Folder is C:\\MyFolder\
You need to right click and share it
And then from your application acces it as follows
\\10.100.100.10\MyFolder\
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.