java.IO 实现目录全部内容复制 老杜

package com.fangun;

import java.io.*;

public class CopyAll {
    public static void main(String[] args) {
        File src = new File("D:\\Downloads\\armadillo-9.900.3");
        File des = new File("E:\\");
        copy(src,des);
    }

    private static void copy(File src, File des) {
        if (src.isFile()){
            FileInputStream fileInputStream=null;
            FileOutputStream fileOutputStream=null;
            try {
                fileInputStream = new FileInputStream(src);
                String s = (des.getAbsolutePath().endsWith("\\") ? des.getAbsolutePath() : des.getAbsolutePath() + "\\") + src.getAbsolutePath().substring(3);
                File file = new File(s);
                if (!(file.exists())){
                    boolean newFile = file.createNewFile();
                }
                fileOutputStream = new FileOutputStream(s);
                byte[] bytes = new byte[1024 * 1024];
                int readCount=0;
                while ((readCount=fileInputStream.read(bytes))!=-1){
                    fileOutputStream.write(bytes);
                    fileOutputStream.flush();
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }finally {
                if (fileInputStream!=null){
                    try {
                        fileInputStream.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if (fileOutputStream!=null){
                    try {
                        fileOutputStream.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
            return;
        }
        File[] files = src.listFiles();
        for (File file:files){
            if (file.isDirectory()){
                String s = (des.getAbsolutePath().endsWith("\\") ? des.getAbsolutePath() : des.getAbsolutePath() + "\\") + file.getAbsolutePath().substring(3);
                File file1 = new File(s);
                if (!(file1.exists())){
                    boolean mkdirs = file1.mkdirs();//创建父子目录
                }
            }
            copy(file,des);
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值