0
yeomanプロセス中にプロジェクトカタログのファイルを削除するにはどうすればよいですか?フォルダ内のすべてのファイルを削除する
initializing() {
this.sourceRoot('./generators/templates');
this.destinationRoot('./generators/project');
console.log(this.destinationPath());
console.log(this.sourceRoot());
this.fs.delete(this.destinationPath());
this.fs.delete(this.destinationPath('**/*'));
this.fs.delete('project');
this.fs.delete('./generators/project');
this.fs.delete('generators/project');
this.fs.delete('generators/project/**/*');
}
これらの非はあなたがfs.unlink(path, callback)
やfs.unlinkSync(path)
を使用する必要がありますfsを使用してファイルを削除する場合:(
'this.fs.unlinkSync( 'yourpath')はどうですか? – Lucio
残念なことにそのメソッドは定義されていません – user1075940
'これらのうちのどれもうまくいかないようです - あなたは何かエラーがありますか? –