删除指定路径文件夹下所有文件 .net

string filePath = Server.MapPath("~/ImportBaseInfo/");

string[] filePaths = Directory.GetFiles(filePath);  

foreach (string filepath in filePaths)

{     File.Delete(filepath);       }

 

 

灵感来自大佬:https://www.cnblogs.com/hongkun/p/7993619.html

posted on 2021-02-09 09:59  张不胖  阅读(104)  评论(0编辑  收藏  举报

导航