string realPath;
realPath = Server.MapPath("~/ReportHtmlFiles/" + TestFolder + "/");
// Check if folder exists, if not create it
if (!Directory.Exists(realPath))
{
Directory.CreateDirectory(realPath);
}
realPath = Server.MapPath("~/ReportHtmlFiles/" + TestFolder + "/");
// Check if folder exists, if not create it
if (!Directory.Exists(realPath))
{
Directory.CreateDirectory(realPath);
}
0 comments:
Post a Comment