Java实现文件归类复制

最近在汇总整理电脑上的资料,由于资料的结构大部分都如下所示:

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();
}
}

/**
* @param path 目标路径
* @param fileType 目标文件格式
*/
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())));
}
}
}
}
}
}
}

文章作者: Anders Cao
文章链接: http://yoursite.com/2019/06/24/Java实现文件归类复制/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Anders's Blog
打赏
  • 微信
  • 支付寶
目录