好友
阅读权限10
听众
最后登录1970-1-1
|
就在刚刚热乎的,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();
}
} |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|