How to Generate Dynamic folder on runtime in asp.net

 DirectoryInfo thisFolder = new DirectoryInfo(Server.MapPath("UploadedFiles"));
 if (!thisFolder.Exists)
 {
      thisFolder.Create();
 }