Java实现文件夹复制

使用递归复制文件夹和文件

package constxiong.interview;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;


/**
 * 复制文件夹
 * @author ConstXiong
 * @date 2019-11-13 13:38:19
 */
public class TestCopyDir {

	public static void main(String[] args) {
		String srcPath = "E:/a";
		String destPath = "E:/a_";
		copyDir(srcPath, destPath);
	}
	
	/**
	 * 复制文件夹
	 * @param srcFile
	 * @param destFile
	 */
	public static void copyDir(String srcDirPath, String destDirPath) {
		File srcDir = new File(srcDirPath);
		if (!srcDir.exists() || !srcDir.isDirectory()) {
			throw new IllegalArgumentException("参数错误");
		}
		File destDir = new File(destDirPath);
		if (!destDir.exists()) {
			destDir.mkdirs();
		}
		File[] files = srcDir.listFiles();
		for (File f : files) {
			if (f.isFile()) {
				copyFile(f, new File(destDirPath, f.getName()));
			} else if (f.isDirectory()) {
				copyDir(srcDirPath + File.separator + f.getName(),
						destDirPath + File.separator + f.getName());
			}
		}
	}
	
	/**
	 * 复制文件
	 * @param srcFile
	 * @param destFile
	 */
	public static void copyFile(File srcFile, File destFile) {
		BufferedInputStream bis = null;
		BufferedOutputStream bos = null;
		byte[] b = new byte[1024];
		
		try {
			bis = new BufferedInputStream(new FileInputStream(srcFile));
			bos = new BufferedOutputStream(new FileOutputStream(destFile));
			int len;
			while ((len = bis.read(b)) > -1) {
				bos.write(b, 0, len);
			}
			bos.flush();
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (bis != null) {
				try {
					bis.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			if (bos != null) {
				try {
					bos.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}
	
}

 

给TA打赏
共{{data.count}}人
人已打赏
Java

缓冲流的优缺点

2020-7-24 9:01:14

Java

Java中的Socket是什么?

2020-7-24 9:01:48

本站所发布的一切源码、模板、应用等文章仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版,购买注册,得到更好的正版服务。如有侵权。本站内容适用于DMCA政策。若您的权利被侵害,请与我们联系处理,站长 QQ: 84087680 或 点击右侧 私信:盾给网 反馈,我们将尽快处理。
⚠️
本站所发布的一切源码、模板、应用等文章仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版,购买注册,得到更好的正版服务。如有侵权。本站内容适用于DMCA政策
若您的权利被侵害,请与我们联系处理,站长 QQ: 84087680 或 点击右侧 私信:盾给网 反馈,我们将尽快处理。
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索