bucket.getFiles should document (at the top) the on()
way of iterating. #673
Closed
Description
Right now, in http://googlecloudplatform.github.io/gcloud-node/#/docs/v0.15.0/storage/bucket?method=getFiles
bucket.getFiles(function(err, files, nextQuery, apiResponse) {
if (nextQuery) {
// nextQuery will be non-null if there are more results.
bucket.getFiles(nextQuery, function(err, files, nextQ, apiResponse) {});
}
});
which is ... absurdly confusing -- I just want to iterate through all the files.
Can we change the examples to document the way to iterate through all files, and abort the traversal early if necessary?
bucket.getFiles().on('data', function(file) {
console.log(file);
if (some condition) {
this.end();
}
});