How to list files in Firebase storage in a specific directory (eg: /test),
Here is what I tried :
var query = {
delimiter: 'test/'
};
const storageRef = admin.storage().bucket().getFiles(query, function(err, files, nextQuery, apiResponse) {
console.log(files);
}
but it returns files at the root of the bucket..
Any idea?