__夏_傷

导航

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);
}
}

将代码放在page_load事件中,其中"/xls"表示所在文件夹.

posted on 2012-02-28 15:05  Pinson  阅读(167)  评论(0编辑  收藏  举报