ASP.NET MVC3中如何创建文件夹
stringmapPath=Server.MapPath("/image/newDir");if(!Directory.Exists(mapPath)...
string mapPath=Server.MapPath("/image/newDir");if (!Directory.Exists(mapPath)) { Directory.CreateDirectory(mapPath);}这样为什么创建不了文件夹?
展开
1个回答
2013-05-22
展开全部
string filePhysicalPath = Server.MapPath("~/image/newDir/");
if (!Directory.Exists(filePhysicalPath))//判断上传文件夹是否存在,若不存在,则创建
{
Directory.CreateDirectory(filePhysicalPath);//创建文件夹
}
这样才可以的哦,关键在这个“~”符号
if (!Directory.Exists(filePhysicalPath))//判断上传文件夹是否存在,若不存在,则创建
{
Directory.CreateDirectory(filePhysicalPath);//创建文件夹
}
这样才可以的哦,关键在这个“~”符号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询