Subhash Sharma

Subhash Sharma
Subhash Sharma

This is Subhash Sharma(Software Engineer) Blog

Welcome to this blog and find every solution.............

Search This Blog

Software Engineer(Subhash Sharma)

Software Engineer(Subhash Sharma)
Software Engineer

Monday, December 27, 2010

Create Directory when not Exist

string tempFolder = Request.PhysicalApplicationPath + "Assets\\temp";
if (!Directory.Exists(tempFolder))
{
Directory.CreateDirectory(tempFolder);
}

No comments:

Post a Comment