How to create folder in remote server
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hai all, We have taken a Public IP ,we have to create a folder through windows application in that remote system with this Public IP? we tried this like : DirectoryInfo Dir = new DirectoryInfo(@"//" + path + "/Main Folder/Sub Folder/"); if (!Dir.Exists) { Dir.Create(); } we got this bellow error : "The Net work path was not found "
-
hai all, We have taken a Public IP ,we have to create a folder through windows application in that remote system with this Public IP? we tried this like : DirectoryInfo Dir = new DirectoryInfo(@"//" + path + "/Main Folder/Sub Folder/"); if (!Dir.Exists) { Dir.Create(); } we got this bellow error : "The Net work path was not found "
do you have the network credential to creat a folder there? ... ???