File 클래스를 이용한 파일의 정보 구하기 import java.io.File; import java.io.IOException; public class FileInfo { public static void main(String[] args) { if(args.length != 1){ System.out.println("사용법 : java FileInfo 파일이름"); System.exit(0); } // if end File f = new File(args[0]); if(f.exists()){ // 파일이 존재할 경우 System.out.println("length : "+ f.length()); // 파일의 Byte 크기 System.out.println("canRead :" + f.canRead(..