How can i create Folder on server from client
-
hi i want to know How can i create Folder on server from client side the on network using VB.net looking forwrd for reply take care
Are you talking about a server with file sharring or a mapped drive? If so, try something like this - Dim myDir as new System.IO.directoryInfo("\\ServerName\directory1") myDir.CreateSubdirectory("New Directory") Or are you doing this with remoting? In that case you'd create a public procedure in the shared server object that would look something like the above code. Then just access it from the client. I hope this makes sense. If not or if you have further questions, just reply :) -Steve
-
hi i want to know How can i create Folder on server from client side the on network using VB.net looking forwrd for reply take care