赞
踩
编写Java程序进行解决
public class MyTest{ public static void main(String[] args) { String filePath = ""; //文件路径 File file = new File(filePath); ArrayList<File> list = new ArrayList(); getFileFromFileDir(file, list); for (File o : list) { o.delete(); } } static List<File> getFileFromFileDir(File file, ArrayList list) { if (file.isDirectory()) { File[] files = file.listFiles(); for (File file1 : files) { getFileFromFileDir(file1, list); } } else { if (file.getName().lastIndexOf(".repositories") > 0 || file.getName().lastIndexOf(".lastUpdated") > 0) { list.add(file); } } return list; } } 修改filePath 为自己的本地maven仓库地址即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。