Posted on: 3/11/2015 7:55:14 PM | Views : 558

Hi all,
Im having problem while creating directory Access to the path is denied
Code
// Cat Folder Path string folderPathCat = @"Product/Category/"; string pathString = folderPathCat + "/" + txt_AddNewCat; Directory.CreateDirectory(Server.MapPath(pathString)); // SubCat Folder Path string subCatPathString = pathString + "/" + txt_AddSubCat; Directory.CreateDirectory(subCatPathString);
Thanks in advance



dfd

Go to the complete details ...