How to fetch updated list of blobs from azure, When a new file has been added to blob storage??
This is the code which fetches the blobs from azure-storage
blobService.listContainersSegmented(null, function (error, results) {
if (error) {
// List container error
} else {
for (var i = 0, container; container = results.entries[i]; i++) {
// Deal with container object
}
}
});
Is there any Listener or Stream to get updated list when a new blob is added?
Please help me.
Thanks in advance.