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"表示所在文件夹.
____你會如何想起我_帶著微笑或是很沉默_
____很多事情錯過了就是錯過了_