当前位置:网站首页>IO流篇 -- 基于io流实现文件夹拷贝(拷贝子文件夹及子文件夹内文件)满满的干货
IO流篇 -- 基于io流实现文件夹拷贝(拷贝子文件夹及子文件夹内文件)满满的干货
2022-08-05 09:14:00 【InfoQ】
题目:利用IO流实现文件夹拷贝,需拷贝子文件夹以及子文件夹的文件。
解题思路:利用递归实现文件夹拷贝,一层层往里进,看是否有文件,若有,执行前一遍复制的操作,这样就达到了拷贝文件夹以及子文件夹。
话不多说,上代码:
public class FileCopy {
public static void main(String[] args) {
//源文件
String path = "C:/Users/Desktop/0611";
//目标地址
String path2 = "C:/Users/Desktop/0611(复制版)";
//将目标路径放入File类中
File f2 = new File(path2);
//检测文件路径是否存在,若不存在,则创建文件夹,防止文件未找到异常导致程序崩溃
if (!f2.exists()) {
//创建文件夹
f2.mkdirs();
}
//调用方法,传入实参,开始拷贝文件夹
copyFile(path, path2);
}
/**
* 拷贝文件,利用递归拷贝子文件夹以及文件
* @param path1 源文件路径
* @param path2 目标文件路径
*/
public static void copyFile(String path1, String path2) {
File file = new File(path1);
File[] files = file.listFiles();
for (File file2 : files) {
if (file2.isDirectory()) {
String newPath = path2 + File.separator + file2.getName();
File f2 = new File(newPath);
System.out.println(f2.getAbsolutePath());
f2.mkdirs();
System.out.println("创建成功~");
copyFile(file2.getAbsolutePath(), newPath);
}
if (file2.isFile()) {
try {
InputStream is = new FileInputStream(file2.getAbsolutePath());
int num = is.available();
byte[] bs = new byte[num];
OutputStream os = new FileOutputStream(path2 + File.separator + file2.getName());
int realLen = is.read(bs, 0, bs.length);
os.write(bs, 0, realLen);
System.out.println("写入成功~");
if (is != null) {
is.close();
}
if (os != null) {
os.close();
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
如果你觉得这篇文章有用,那就支持一下吧,感谢点赞的老铁
边栏推荐
- js graphics operation one (compatible with pc, mobile terminal to achieve draggable attribute drag and drop effect)
- openpyxl操作Excel文件
- 无题十三
- DPU — 功能特性 — 安全系统的硬件卸载
- 【Excel实战】--图表联动demo_001
- Dynamic memory development (C language)
- Luogu P4588: [TJOI2018]数学计算
- 歌词整理
- Embedded practice ---- based on RT1170 transplant memtester to do SDRAM test (25)
- Luogu P1908: 逆序对 [树状数组]
猜你喜欢
随机推荐
IT研发/开发流程规范效能的思考总结
基因数据平台
微信小程序请求封装
2022/8/4 考试总结
深度学习21天——卷积神经网络(CNN):天气识别(第5天)
画法几何及工程制图考试卷A卷
Assembly language (8) x86 inline assembly
基于 Kubernetes 的微服务项目整体设计与实现
无题十四
如何实现按键的短按、长按检测?
XCODE12 在使用模拟器(SIMULATOR)时编译错误的解决方法
Concurrent CAS
21 Days of Deep Learning - Convolutional Neural Networks (CNN): Weather Recognition (Day 5)
C语言-数组
MQTT X Newsletter 2022-07 | 自动更新、MQTT X CLI 支持 MQTT 5.0、新增 conn 命令…
The difference between beautiful MM and ordinary MM
请问大佬们 ,使用 Flink SQL CDC 是不是做不到两个数据库的实时同步啊
Two-table query average grouping in sql server
Luogu P4588: [TJOI2018]数学计算
my journal link