日期:2014-05-17 浏览次数:20742 次
string oldFile = Server.MapPath("../Upload/Images/") + Name; if (System.IO.File.Exists(oldFile)) System.IO.File.Delete(oldFile);
------解决方案--------------------
我的例子:
using System.IO;
///在程序代码中:
string path = System.Web.HttpContext.Current.Server.MapPath(FileUrl);
///实际删除当前路径下的文件
File.Delete(path);
------解决方案--------------------
这是我自己的一个删除图片和缩略图的代码
string thubsname = Server.MapPath("~/" + newsrow.thublsurl.Trim());//这是缩略图的物理路径
string picname = Server.MapPath("~/" + newsrow.picurl.Trim());//这是图片的物理路径
system.IO.File.Delete(thubsname);//别忘了导入
system.IO.File.Delete(picname);
同时将Everyone账户的权限设置对图片和缩略图文件夹的完全控制权限。
这样就没问题了!
困了 睡觉!
------解决方案--------------------