Skip to content

Commit

Permalink
Merge pull request #72 from We-Food-C-I-A/hotfix/57
Browse files Browse the repository at this point in the history
fix: 이미지 경로변경
  • Loading branch information
JBumLee authored Aug 24, 2024
2 parents c9f66b0 + d4ec9a5 commit 5db1a0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ private void removeNewFile(File targetFile) {

// 로컬에 파일 업로드 하기
private Optional<File> convert(MultipartFile file) throws IOException {
File convertFile = new File("uploads"+ "/" + file.getOriginalFilename());
File convertFile = new File("/usr"+ "/" + file.getOriginalFilename());
if (convertFile.createNewFile()) { // 바로 위에서 지정한 경로에 File이 생성됨 (경로가 잘못되었다면 생성 불가능)
try (FileOutputStream fos = new FileOutputStream(convertFile)) { // FileOutputStream 데이터를 파일에 바이트 스트림으로 저장하기 위함
fos.write(file.getBytes());
Expand Down

0 comments on commit 5db1a0c

Please sign in to comment.