lang/node

ENOENT

C/H 2015. 12. 30. 20:30

No such file or directory

파일이 있는데 에러가 난다면 파일명 철자를 맞춰보자... 의외로 단순한데서 오타가 날 가능성이 많다.

ENOENT: No such file or directory#

Commonly raised by fs operations; a component of the specified pathname does not exist -- no entity (file or directory) could be found by the given path.

예외 처리

try
{
	key = fs.readFileSync('./ssl/ssl.key', 'utf-8');
}
catch (e){
	console.log(e);
}


반응형