How to create a folder in ASP.Net 2.0 / C#


private void MyCreateDirectory(string path)
{
    if (!Directory.Exists(Server.MapPath(path)))
         Directory.CreateDirectory(Server.MapPath(path));
}
  1. #1 by Egli - July 13th, 2008 at 23:24

    Thanks for the post man very useful :) ive been looking for this :)

(will not be published)
  1. No trackbacks yet.