[JAVA] File Object
2023. 5. 19. 15:19
JAVA
createNewFile - 파일 생성 String rootPath = "C:/DevLog/"; String sFilePath = rootPath + "test.txt"; File file = new File(sFilePath); file.createNewFile(); 실무에 적용할 때 rootPath는 설정값을 읽어서 사용하도록 한다. properties파일 또는 yml 파일의 값은 서버와 분리하여 사용하기 때문이다. (Build시 해당 파일을 제외한다던가 설정을 통해 Local, 개발서버, 운영서버 설정 파일을 분리) mkdir - 디렉토리 생성 String rootPath = "C:/DevLog/"; String sNewDirectory = rootPath + "study"; File file = ..