private void MyCreateDirectory(string path) { if (!Directory.Exists(Server.MapPath(path))) Directory.CreateDirectory(Server.MapPath(path)); }
How to create a folder in ASP.Net 2.0 / C#
- No trackbacks yet.
private void MyCreateDirectory(string path) { if (!Directory.Exists(Server.MapPath(path))) Directory.CreateDirectory(Server.MapPath(path)); }
This entry was posted on Monday, November 12th, 2007, 3:52 am and is filed under ASP.Net, C#. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.
Fusion theme by digitalnature | powered by WordPress
Entries (RSS) and Comments (RSS) ^
#1 by Egli - July 13th, 2008 at 23:24
Thanks for the post man very useful
ive been looking for this