吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1308|回复: 18
收起左侧

[学习记录] 批量删除文件夹下的文件

[复制链接]
wangwyx 发表于 2022-12-14 11:10
就在刚刚热乎的,maven 引用提示,百度了下,要把_remote.repositories 删除掉。
一个一个删太麻烦,索性写个递归删除!
直接上代码


public static void main(String[] args) {
   String rootpath = "XXXXX";
   delfile(rootpath);


}
public static void delfile(String path){
   File rootfile = new File(path);
   if (rootfile.isDirectory()) {
      for (File file : rootfile.listFiles()) {
         delfile(file.getPath());
      }
   }else if("_remote.repositories".equalsIgnoreCase(rootfile.getName())){
      rootfile.delete();
   }
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

平淡最真 发表于 2022-12-14 11:28
难道不是ctrl a
hk137 发表于 2022-12-14 11:34
cloud2010 发表于 2022-12-14 11:54
海是倒过来的天 发表于 2022-12-14 11:54
如果还需要分类删除难道不是排序,选择,删除
没有网名789 发表于 2022-12-14 12:29

ctrl+a  +  del 岂不牛逼?小白都知道吧
落红护花 发表于 2022-12-14 13:16
为啥一个一个删?
likaiaixuexi 发表于 2022-12-14 13:44
虽然我用不上,但是还是感谢楼主无私奉献的精神
feiyu361 发表于 2022-12-14 14:43
难道不是 ctrl+A  Del ? ? ?
秋风君 发表于 2022-12-14 14:50
可以的,虽然达到同一效果的方法有很多,你只需要通过自己想要的方式实现就可以了。不必在意太多
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-28 20:00

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表