我使用fs-extra节点包来创建文件夹和文件,但文件不在正确的路径中,它们最终与文件夹处于同一级别,我需要将每个文件包含在其中新创建的文件夹。
fs.mkdirs(filenames[i], function (err) {
if (!err){
fs.writeFile( './'+filenames[i]+'.html', 'hello world' , function( error ){
console.log(error);
});
}
});
答案 0 :(得分:4)
我认为这可能是你想要的:
os.system(whatever)