文件夹复制

Posted 静赋清承

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件夹复制相关的知识,希望对你有一定的参考价值。

//文件夹复制
    public static boolean folderCopy(String oldName,String newName){
        File oldfile = new File(oldName);
        File newfile = new File(newName);

        if(!oldfile.exists())return false;
        if(!newfile.exists()){
            newfile.mkdirs();
        }

        for (String name:oldfile.list()){
            File file = new File(oldName+"/"+name);
            if(file.isDirectory()){
                File subFile = new File(newName,name);
                subFile.mkdir();
                folderCopy(oldName+"/"+name,newName+"/"+name);
            }else{
                fileCopy2BufferByte(oldName+"/"+name,newName+"/"+name);
            }
        }
        return true;
    }

    //字节流高效缓冲区文件复制
    public static void fileCopy2BufferByte(String oldFileName,String newFileName){
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try{
            bis = new BufferedInputStream(new FileInputStream(oldFileName));
            bos = new BufferedOutputStream(new FileOutputStream(newFileName));
            byte[] bytes = new byte[1024];
            int len = -1;
            while ((len = bis.read(bytes))!=-1)bos.write(bytes,0,len);
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            try {
                if(bis!=null)bis.close();
                if(bos!=null)bos.close();
            }catch (IOException ee){
                ee.printStackTrace();
            }
        }
    }

 

以上是关于文件夹复制的主要内容,如果未能解决你的问题,请参考以下文章

vue —— VSCode代码片段

vue —— VSCode代码片段

什么是在 C++ 中获取总内核数量的跨平台代码片段? [复制]

Android:使用支持片段管理器时复制片段

Prometheus配置文件

VsCode 代码片段-提升研发效率