#자바 #File #SimpleDateFormat
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
public class Ex01File {
public static void main(String[] args) throws IOException {
/*
File file = new File("/home/pc36/io/sample.txt");
File file = new File("../sample.txt");
System.out.println("getName() : " + file.getName());
System.out.println("getAbsolutePath() : " + file.getAbsolutePath());
System.out.println("getCanonicalPath() : " + file.getCanonicalPath());
System.out.println("getPath() : " + file.getPath());
System.out.println("getParent() : " + file.getParent());
*/
// 루트 디렉토리 목록 가져오기, 윈도우는 드라이브라는 개념을 사용하여 루트 디렉토리가 여러개다.
// 윈도우 외에 루트 디렉토리는 하나(/)다.
File[] roots = File.listRoots();
// System.out.println(roots[0]);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy년 MM월 dd일 (E) HH:mm:ss");
for(int i=0; i<roots.length; i++) {
File root = roots[i];
File[] files = root.listFiles(); // 하위 디렉토리, 파일 목록
for(File file : files) {
// 수정일자, 유형, 파일 크기, 파일명
System.out.printf("%s\t %s\t %s\t %s\n",
dateFormat.format(file.lastModified()),
file.isDirectory() ? "<DIR>" : " ",
(file.length()/1024) + "KB",
file.getName()
);
}
}
}
}
'IT > JAVA' 카테고리의 다른 글
[JAVA/자바] InputStreamReader / OutputStreamWriter 사용 하여 파일 입출력 하기 (0) | 2018.09.27 |
---|---|
[JAVA/자바] File 객체를 사용하여 폴더 및 파일 생성하기 (0) | 2018.09.13 |
[JAVA/자바] 람다식(Lambda expression) 에 대해 알아보기 (0) | 2018.09.10 |
[JAVA/자바] 컬렉션 프레임워크 리스트(List) 계열 ArrayList 예제 (0) | 2018.09.06 |
[JAVA/자바] SimpleDateFormat 을 사용 해서 현재 시간 알아오기 (0) | 2018.09.06 |