最近在汇总整理电脑上的资料,由于资料的结构大部分都如下所示:
1 2 3 4 5
| D_|_FolderA_|_a.pdf | |_b.xml | |_FolderAson_|_aa.pdf | |_b.xml |_FolderB
|
手动自己整理是不可能的,所以需要计算机帮助我们完成任务。
具体代码实现如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| package io.caoxx.File.demo;
import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths;
public class FileLookupCopyDemo { public static void main(String[] args) { String[] fileType = { ".pdf"}; String path = "D:\\CHD\\v3"; String targetPath="D:\\CHD"; try { FileLookupCopyDemo.LookupFile(path,fileType); } catch (IOException e) { e.printStackTrace(); } }
public static void LookupFile(String path,String [] fileType) throws IOException { File file = new File(path); File[] files = file.listFiles(); for (File file1 : files) { if (file1.isDirectory()) { LookupFile(file1.getPath(),fileType); } else { if (fileType.length<0){ System.out.println("输出所有得文件格式"); }else{ for (String s:fileType) { if (file1.getName().endsWith(s)) { Files.copy(Paths.get(file1.getPath()),new FileOutputStream(new File(targetPath+file1.getName()))); } } } } } } }
|