Httpcontext Current Server Mappath

[Solved] Httpcontext Current Server Mappath | Typescript - Code Explorer | yomemimo.com
Question : HttpContext.Current.Server.MapPath

Answered by : red-team

string folderPath = "D:/createFolder";
DirectoryInfo di = new DirectoryInfo(folderPath);
// 만약 폴더가 존재하지 않으면
if(di.Exists == false)
{ di.Create();
}

Source : https://devkimgoon.tistory.com/45 | Last Update : Thu, 02 Jun 22

Answers related to httpcontext current server mappath

Code Explorer Popular Question For Typescript