我想将流星应用程序部署到meteor.com。
不幸的是,我必须将一些 tmp 文件写入流星的公共文件夹。
示例代码:
var fs = Npm.require('fs');
var filepath = "../../../../../public/resizing/tmp~";
fs.open(localpath, 'w', function(err,fd)
{
if(err) throw "error opening file";
fs.close(fd,function(){});
}
(../../../../../public
是捆绑后的流星公用文件夹的位置!)
这在我的本地机器上运行良好,因为我在公用文件夹中具有写入权限。有没有办法在部署到流星的应用程序中写入 tmp 文件?