package com.kwan.springbootkwan.utils; import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.date.StopWatch; import com.alibaba.fastjson2.JSON; import com.google.common.base.Charsets; import com.google.common.io.Files; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * 删除博客中不存在的照片 * * @author : qinyingjie * @version : 2.2.0 * @date : 2023/2/8 10:45 */ public class FileContainsUtil { /** * 默认不存在 */ private static boolean IS_EXIST = false; /** * 图片路径 */ private static final String PIC_PATH = "/Users/qinyingjie/Documents/idea-workspace/blogimg/"; /** * 博客路径 */ private static final String BLOG_FOLDER = "/Users/qinyingjie/Documents/idea-workspace/blog/"; /** * 白名单 */ private static final String[] WHITELISTS = {"http://qinyingjie.top/blogImg/image-20230324112725149.png"}; public static void main(String[] args) throws Exception { StopWatch stopWatch = new StopWatch(); stopWatch.start("删除未用到的图片"); //不存在的图片集合 final List isNotExist = new ArrayList<>(); //获取所有图片名称 final List picNames = getPicName(PIC_PATH); System.out.println("图片总数为" + picNames.size()); if (CollectionUtil.isNotEmpty(picNames)) { for (String picName : picNames) { //是白名单里面的图片,直接忽略 boolean isWhite = false; for (String whitelist : WHITELISTS) { if (whitelist.contains(picName)) { isWhite = true; break; } } if (isWhite) { continue; } //默认不存在 IS_EXIST = false; //指定类型的文件 List suffix = new ArrayList<>(); suffix.add(".md"); //包含某个字符串 traverseFolder(BLOG_FOLDER, suffix, picName); //文件不存在 if (!IS_EXIST) { isNotExist.add(picName); deletePic(PIC_PATH + picName); } } } System.out.println("不存在图片总数为" + isNotExist.size()); stopWatch.stop(); //毫秒输出 System.out.println(JSON.toJSONString(stopWatch.getTaskInfo())); } /** * 获取文件 * * @param path * @param suffix * @param word * @throws IOException */ public static void traverseFolder(String path, List suffixs, String word) throws Exception { File file = new File(path); if (file.exists()) { //获取文件夹下的文件 File[] files = file.listFiles(); if (null != files && files.length != 0) { for (File file2 : files) { //是否是文件夹 if (file2.isDirectory()) { traverseFolder(file2.getAbsolutePath(), suffixs, word); } else { for (String suffix : suffixs) { //包含md结尾的文件 if (file2.getAbsolutePath().contains(suffix)) { getParams(file2.getAbsolutePath(), word); } } } } } } } /** * 判断文件是否存在 * * @param classPath * @param word * @throws IOException */ public static void getParams(String classPath, String word) throws IOException { File file = new File(classPath); //每行作为一个字符串,存为列表元素 List strings = Files.readLines(file, Charsets.UTF_8); for (String string : strings) { //判断是否包含方法名称,即指定字符串 if (string.contains(word)) { //文件存在 IS_EXIST = true; } } } /** * 获取图片名称 * * @param path * @return */ public static List getPicName(String path) { List picNames = new ArrayList<>(); File file = new File(path); if (file.exists()) { //获取文件夹下的文件 File[] files = file.listFiles(); if (null != files && files.length != 0) { for (File file2 : files) { //是否是文件夹 if (!file2.isDirectory()) { //包含md结尾的文件 final String name = file2.getName(); picNames.add(name); } } } } return picNames; } /** * 删除文件 * * @param picPath */ public static void deletePic(String picPath) { File file = new File(picPath); try { file.delete(); System.out.printf("删除文件成功:%s%n", picPath); } catch (Exception e) { System.err.printf("无法删除的路径 %s%n%s", picPath, e); } } }