Language/Java

File의 info method

아르비스 2014. 11. 12. 09:04

File에는 경로 관련한 method가 많이 있다.

하지만 정작 필요한 것이 어떤것인지 찾기 어렵다.

그래서 sample로 확인한다.


실제 file 경로

D:\temp\dummy.txt


[검증방법]

 File temp = new File(path);

System.out.println("getAbsolutePath :" + temp.getAbsolutePath());

System.out.println("getName : " + temp.getName());

System.out.println("getParent : " + temp.getParent());

System.out.println("getPath : " + temp.getPath());

System.out.println("getAbsoluteFile : " + temp.getAbsoluteFile());

System.out.println("getParentFile : " + temp.getParentFile());


[결과]

getAbsolutePath :D:\temp\dummy.txt

getName : dummy.txt

getParent : D:\temp

getPath : D:\temp\dummy.txt

getAbsoluteFile : D:\temp\dummy.txt

getParentFile : D:\temp


이상~