파일 탐색
-
(JAVA) 자바 파일 탐색 & 재귀호출카테고리 없음 2018. 8. 24. 13:47
package blog.naver.com.explorer; import java.io.File; public class FileSystemExplorer { public void printFileSystem(String path) { // 1. 파일 객체 생성 (path 정보를 가지는 파일 만듬) File directory = new File(path); // 현재 경로를 파일 객체로 생성 // 1-1. directory 안의 내용을 탐색한다. String[] contents = directory.list(); File file = null; // 2. directory 객체의 내용이 폴더인지 파일인지 구분한다. for (String content : contents) { file = new File(d..