반응형
재귀적으로 처리하는 여러 예제가 있는데, AI한테 물어보니 간단한 방법을 알려줬다.
import org.apache.commons.io.FileUtils;
public class CopyDirectoryCommonsIO {
public static void main(String[] args) throws IOException {
Path source = Paths.get("C:/source/folder");
Path target = Paths.get("C:/target/folder");
FileUtils.copyDirectory(source.toFile(), target.toFile());
System.out.println("폴더 복사 완료");
}
}
반응형
'Programming > Java_Etc' 카테고리의 다른 글
JavaFX와 Mybatis 연동하기 - Maven (1) | 2024.09.11 |
---|---|
Java Mybatis설정에서 MS-SQL연결 설정방법 (1) | 2024.09.05 |
Java Swing프로젝트에서 Mybatis 연동하기 (0) | 2024.09.02 |
자바GUI(Swing) - Simple text editor (0) | 2022.07.11 |
Linux용 음악 프로그램 QMMP - 설치부터 스킨 변경까지 (0) | 2022.07.03 |