Google Cloud Storageが、特定の名前のファイルがnode.jsの特定のバケットに存在するかどうかを確認する効率的な方法を提供しているかどうかを知りたいです。 bucket.fileExists('someName')
などのメソッドが理想的です。明白な答えがあれば、私は謝罪します。建設的なフィードバックをいただければ幸いです。
彼らはfile.exists()
method を追加しました。
const fileExists = _=>{
return file.exists().then((data)=>{ console.log(data[0]); });
}
fileExists();
//logs a boolean to the console;
//true if the file exists;
//false if the file doesn't exist.