목록2024/08/21 (1)
JS Coding
[node.js] error: eperm: operation not permitted, unlink 파일 이미지 등록
함수로 만들어 png 파일은 파일 프로세스 사용중이어도 삭제 가능하지만 JPEG 파일은 프로세스 사용중이면 삭제가 불가능 하다. 그래서 강제적으로 프로세스 종료를 시켜주는 함수를 불러 실행 시켜줘야 한다. async function deleteFileWithForce(filePath) { try { await fs.promises.unlink(filePath); // 기본적으로 파일 삭제 시도 console.log(`File ${filePath} deleted successfully`); } catch (err) { console.warn( `File ${filePath} could not be deleted with unlink...
카테고리 없음
2024. 8. 21. 19:57