我正在尝试完成一个简单的任务,删除文件。该错误确实没有告诉我为什么它不能删除该文件。关于它可能是什么以及我将来如何找到更多详细错误的任何想法?
我的代码:
var fs = require('fs');
fs.unlink('/file/path.jpg', function(err){
if (err) throw err;
});
我的错误:
DEBUG:
DEBUG: /Users/vartanarabyan/Development/NodeJS/orcha/routes/document.js:67
DEBUG: if (err) throw err;
DEBUG: ^
DEBUG: Error: ENOENT, unlink '/Users/vartanarabyan/Development/NodeJS/orcha/public/uploads/5d78abfefd5ff47398103ada55d9be47'
DEBUG: Program node app exited with code 1