asp.net中用于删除文件下的所有文件
摘要:
if (Directory.Exists(HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath + "/xls"))) { foreach (string filename in Directory.GetFiles(HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath + "/xls"))) { File.Delete(filename); } } 阅读全文
posted @ 2012-02-28 15:05 Pinson 阅读(167) 评论(0) 推荐(0) 编辑