반응형
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
반응형