Error code 모음/6. Jav Script errors

[JavaScript Error] ENOENT: no such file or directory, open

쟈누이 2021. 8. 22. 17:47
반응형

 

 

1. 에러 원인


This is probably because you are trying to write to root of file system instead of your app directory

--> 앱 디렉토리(경로)가 아닌 root 경로에 쓰려고 해서 발생하는 것입니다

 

스트림에 대해서 공부하던 중 'createWriteStream' 에 대해서 공부하다가 나타난 에러이였다

 

 

 

2. 해결방법


const ws = fs.createWriteStream('src/big-file')

기존의 local 경로에서 src 아래의 경로로 수정해서 파일을 만들어 주었다

 

local 경로를 root경로로 인식하여 에러가 떴던것 같다. 

 

 

 

3. 참고 링크


https://stackoverflow.com/questions/34811222/writefile-no-such-file-or-directory

 

writeFile no such file or directory

I have a file(data.file an image), I would like to save this image. Now an image with the same name could exist before it. I would like to overwrite if so or create it if it does not exist since be...

stackoverflow.com

 

반응형