我正试图在流星的这台服务器上做一个简单的fs.writeFile。它为我尝试过的大多数解决方案返回成功消息。但我无法在文件结构中的任何位置找到该文件。想法?
这是我试过的一个简单片段。
const fs = require('fs');
var path = process.env['METEOR_SHELL_DIR'] + '/../../../public';
fs.writeFile('helloworld.txt', 'Hello World!', function (err) {
if (err) {
console.log("Error:" + err);
} else {
console.log("Success");
}
});
答案 0 :(得分:0)
您正在写信'helloworld.txt'
,但我认为您打算写信至path+'/helloworld.txt'
。