我正在尝试在项目中创建一个文件夹,在创建文件夹后,我想将上传的文件保存在该文件夹中。但它给了我错误消息,拒绝访问路径。 请告诉我在创建该文件夹或任何其他解决方案时如何授予文件夹权限 这是我写的代码
string fileName = FileUpload1.FileName;
string path = "HotelImages/"+txthotelname.Text;
DirectoryInfo di = new DirectoryInfo(path);
bool isExists=Directory.Exists(Server.MapPath(path));
if (!isExists)
{
Directory.CreateDirectory(Server.MapPath(path));
}
FileUpload1.SaveAs(Server.MapPath(path));
请告诉我哪里出错了?