我正在尝试完成一个简单的任务,删除文件.该错误确实没有告诉我为什么它不能删除该文件.关于它可能是什么以及如何在未来找到更多详细错误的任何想法? 我的代码: var fs = require
我的代码:
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/publichttp://img.558idc.com/uploadfile/5d78abfefd5ff47398103ada55d9be47' DEBUG: Program node app exited with code 1ENOENT表示没有这样的文件或目录.您正在尝试删除不存在的文件.