I have tested Firebase functions for storage successfully. However, I havn\'t seen anywhere a hint how to only invoke the function when a file is added into a folder inside
You can listen to a specific path with
exports.generateThumbnail = functions.storage.object('profile').onFinalize(async object => { })