[java]FileUpload할때 내문서 경로 가져오기

728x90
반응형

기존 프로젝트의 파일 업로드 경로는 프로젝트 내에 WebContent 하위에 지정되어있어 파일 업로드 할 때마다

commit 할 때 업로드한 파일이 추가 될수록 계속 따라왔었다 ㅠㅠ

 

그래서 파일이 저장되는 경로를 

C:\Users\유저이름\Documents\resumeUpload

이걸로 바꿔야했다.

 

filePath = System.getProperty("user.home") + "\\Documents\\resumeUpload" + System.getProperty("file.separator");

 

ref

https://zincod.tistory.com/148

 

[JAVA] JAVA 파일경로 관련 정리

new File().getAbsolutePath();  [ 절대경로 ] new File().getCanonicalPath(); [ 상대경로 ] * './' :현재디렉터리 * '../' :상위디렉터리 new File("../conf.properties").getAbsolutePath(); /* C:\Users\user..

zincod.tistory.com

 

728x90
반응형