java 文件夹的拷贝工具

package com.lingshang.io.byteIO;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class CopyFileUtils {

// 文件的拷贝
public static void copyFile(String srcpath,String destpath) throws IOException {
// TODO Auto-generated method stub
copyFile(new File(srcpath), new File(destpath));

}

// 文件的拷贝
public static void copyFile(File srcpath,File destpath) throws IOException {
// TODO Auto-generated method stub
if(!srcpath.isFile()){
System.out.println(“只能拷贝文件”);
throw new IOException(“只能拷贝文件”);
}

	InputStream is = new FileInputStream(srcpath);
	OutputStream os = new FileOutputStream(destpath);
	byte[] flush = new byte[1024];// 一次读取多少字节数
	int len = 0;
	while (-1 != (len = is.read(flush))) {
		os.write(flush, 0, len);

	}
	os.flush();
	os.close();
	is.close();

}

// 文件夹的拷贝
public static void copyDir(String srcpath, String destpath) {

	File src = new File(srcpath);
	File dest = new File(destpath);
	copyDir(src, dest);
}

public static void copyDir(File src, File dest) {

	if (src.isDirectory()) {
		dest = new File(dest, src.getName());
	}

	copyDirDetal(src, dest);
}

private static void copyDirDetal(File src, File dest) {
	// TODO Auto-generated method stub
	if (src.isFile()) {
		try {
			CopyFileUtils.copyFile(src, dest);
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			System.out.println("拷贝文件失败");
		}
	} else if (src.isDirectory()) {
		dest.mkdirs();
		for (File sub : src.listFiles()) {
			copyDirDetal(sub, new File(dest, sub.getName()));
		}
	}
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值