create a folder in asp.net
create a folder in asp.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Deepak BhatiaPosted Aug 6, 2010, 12:18 AM
string currentPath = Server.MapPath("nameofTheFolderWhereNewFoldersAreToBeCreated");
currentPath += "\\NameOFTheFolderToBrCreated";
System.IO.Directory.CreateDirectory(currentPath);
santhosh kumarPosted Aug 5, 2010, 8:19 AM
I want to create a folder with one unique number a runtime.
Deepak BhatiaPosted Aug 5, 2010, 7:44 AM
Write exactly what you want