반응형
package Io;

import java.io.File;

public class FileInfo {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		File f = new File(" ");
		if(f.exists()){
			System.out.println("마지막  날짜 수정 :" + f.lastModified());
			System.out.println("파일 크기: " + f.length());
		}
		else{
			System.out.println("Noexists File");
		}
		//현재 디ㅔㄱ토리를 파일 객체로 생성
		f = new File(".");
		// file 객ㅊ에서 list()로 호출하면 내부의 모든 파일과 디랙토리가 Stirng[]으로 리턴함니

다
		// f 는 모든 하위 멤버변수를 호출
		String[] sub = f.list();
		for(String imsi : sub){
			System.out.println(imsi);
		}
		
	}

}

+ Recent posts