我正在编写一个meteor包'myPackage',需要使用Npm FileSystem和Pah模块将文件写入磁盘。 该文件应该以example-app / packages / myPackage / auto_generated / myFile.js结尾,其中example-app项目 添加了myPackage。
fs = Npm.require( 'fs' ) ;
path = Npm.require( 'path' ) ;
Meteor.methods( {
autoGenerate : function( script ) {
var myPath = '/Users/martinfox/tmp/auto-generated' ;
var filePath = path.join(myPath, 'myFile.js' ) ;
console.log( filePath ) ; // shows /Uses/martinfox/tmp/auto-generated/myFile.js
var buffer = new Buffer( script ) ;
fs.writeFileSync( filePath, buffer ) ;
},
} );
当我运行上面的代码(仅限服务器端)时,我得到了
Exception while invoking method 'autoGenerate' Error: ENOENT,
no such file or directory '/Uses/martinfox/tmp/auto-generated/myFile.js'
注意/使用/ martinfox / tmp /自动生成的文件夹确实存在
答案 0 :(得分:10)
要获取项目的路径,您可以执行以下操作: 来自存储在应用程序根目录中的main.js
var fs = Npm.require('fs');
__ROOT_APP_PATH__ = fs.realpathSync('.');
console.log(__ROOT_APP_PATH__);
您还可以检查您的文件夹是否存在:
if (!fs.existsSync(myPath)) {
throw new Error(myPath + " does not exists");
}
希望它能帮到你