如果下载搜狐、新浪、网易公开课、youtobe等等这些视频网站上的视频,迅雷不成,我经常用的是硕鼠,当然也可以用其他的下载工具。
有硕鼠下载这些视频网站上的视频,会有下载后的残留文件。
下载一个、两个的话,可以手动删除,但是批量下载的话,删到什么时候!
这里提供一个方法,可以秒删这些残留文件。【当然,雕虫小技了】
1 import java.io.File; 2 3 public class Test { 4 public static void main(String[] args) { 5 6 File file = new File("e:" + File.separator + "flvcd"); 7 TraverseFile(file);//递归遍历文件夹 8 } 9 10 private static void TraverseFile(File file) { 11 12 if(!file.exists()) { 13 System.out.println("路径不存在"); 14 } 15 if (file.isDirectory()) {//判断是否是文件夹 16 File[] result = file.listFiles();//得到文件夹里所有的文件夹和文件 17 if (result != null) { 18 for (int i=0; i<result.length; i++) { 19 TraverseFile(result[i]);//再次遍历文件夹 20 } 21 } 22 } 23 24 System.out.println(file); 25 String str = file.getName(); 26 if (str.contains(".exe") | str.contains(".dxq")) { 27 System.out.println("* " + str); 28 file.delete(); 29 } 30 31 } 32 }
时间: 2024-11-07 11:40:15