欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

io流复制文件

程序员文章站 2022-04-09 07:53:46
...

JAVA 使用io流实现文件复制(空内容)

运用递归思想实现文件夹及子文件的复制

package com.neuedu.IO;

import java.io.File;
import java.io.IOException;

public class FileCopy {
    public static void main(String[] args) {
        copy(new File("I:\\A"), new File("D:\\hh"));
    }

    public static void copy(File Old, File New) {
        File file = new File(New.getAbsoluteFile() + "/" + Old.getName());
        file.mkdirs();
        File[] files = Old.listFiles();
        for (File file1 : files) {
         //判断是否还有子文件及文件夹
            if (file1.isDirectory()) {
                copy(file1, file.getAbsoluteFile());
            } else {
                File newFile = new File(file.getAbsoluteFile() + "/" + file1.getName());
                try {
                    newFile.createNewFile();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}
相关标签: io流