C#(CSharp)/Etc
C# directory exist or not
swconsulting
2018. 4. 2. 14:38
string subPath ="ImagesPath"; // your code goes here
bool exists = System.IO.Directory.Exists(Server.MapPath(subPath));
if(!exists)
System.IO.Directory.CreateDirectory(Server.MapPath(subPath));