码迷,mamicode.com
首页 > 编程语言 > 详细

Java中递归复制文件夹及文件(简易版)

时间:2020-05-11 18:31:10      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:parent   byte   tab   absolute   目标   创建   dir   roo   rcfile   


递归调用copyDir方法实现,查询源文件目录使用字节输入流写入字节数组,如果目标文件目录没有就创建目录,如果迭代出是文件夹使用字节输出流对拷文件,直至源文件目录没有内容。



  

   /**
     *  复制文件夹
     * @param srcDir 源文件目录
     * @param destDir 目标文件目录
     */
    public static void copyDir(String srcDir, String destDir) {
        if (srcRoot == null) srcRoot = srcDir;
        //源文件夹
        File srcFile = new File(srcDir);
        //目标文件夹
        File destFile = new File(destDir);
        //判断srcFile有效性
        if (srcFile == null || !srcFile.exists())
            return;
        //创建目标文件夹
        if (!destFile.exists())
            destFile.mkdirs();
        //判断是否是文件
        if (srcFile.isFile()) {
            //源文件的绝对路径
            String absPath = srcFile.getAbsolutePath();
            //取出上级目录
            String parentDir = new File(srcRoot).getParent();
            //拷贝文件
            copyFile(srcFile.getAbsolutePath(), destDir);

        } else {    //如果是目录
            File[] children = srcFile.listFiles();
            if (children != null) {
                for (File f : children) {
                    copyDir(f.getAbsolutePath(), destDir);
                }
            }
        }
    }

 




   /**
     * 复制文件夹
     *
     * @param path    路径
     * @param destDir 目录
     */
    public static void copyFile(String path, String destDir) {

        FileInputStream fis = null;
        FileOutputStream fos = null;
        try {
             /*
                准备目录
                取出相对的路径
                创建目标文件所在的文件目录
             */
            String tmp = path.substring(srcRoot.length());
            String folder = new File(destDir, tmp).getParentFile().getAbsolutePath();
            File destFolder = new File(folder);
            destFolder.mkdirs();
            System.out.println(folder);            //创建文件输入流
            fis = new FileInputStream(path);
            //定义新路径
            //创建文件 输出流
            fos = new FileOutputStream(new File(destFolder,new File(path).getName()));
            //创建字节数组进行流对拷
            byte[] buf = new byte[1024];
            int len = 0;
            while ((len = fis.read(buf)) != -1) {
                fos.write(buf, 0, len);
            }
        } catch (IOException ex) {
            ex.printStackTrace();
        } finally {
            try {
                fis.close();
                fos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

 

 

 

Java中递归复制文件夹及文件(简易版)

标签:parent   byte   tab   absolute   目标   创建   dir   roo   rcfile   

原文地址:https://www.cnblogs.com/CN-Dragon/p/12870682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!