Deepak Bhatia
posted
85 posts
since
Sep 18, 2009
from
Udaipur
|
|
Re: create a folder in asp.net
|
|
|
|
|
|
|
|
|
|
|
You want to create a folder programmaticaly at runtime or want to add new folder in your solution or something else.
Write exactly what you want
|
|
|
|
|
Please do not forget to mark answer as accepted if it helped you.
Deepak Bhatia
|
|
|
|
|
|
santhosh kumar
posted
9 posts
since
May 26, 2010
from
|
|
Re: create a folder in asp.net
|
|
|
|
|
|
|
|
|
|
|
hi deepak, I want to create a folder with one unique number a runtime.
|
|
|
|
|
|
Deepak Bhatia
posted
85 posts
since
Sep 18, 2009
from
Udaipur
|
|
Re: create a folder in asp.net
|
|
|
|
|
|
|
|
|
|
|
string currentPath = Server.MapPath("nameofTheFolderWhereNewFoldersAreToBeCreated");
currentPath += "\\NameOFTheFolderToBrCreated";
System.IO.Directory.CreateDirectory(currentPath);
|
|
|
|
|
Please do not forget to mark answer as accepted if it helped you.
Deepak Bhatia
|
|
|
|
|
|