How does one add a prefix to Azure blob files names in bulk?
I'm asking for an efficient way that can manage this operation for ~10M small sized blob files on Azure storage. My preference is doing it via Python (if possible).
If this isn't possible with the API currently, what alternatives can I resort to?
I need to download a selection of blob files from my Azure storage using azcopy (the only differentiating filter it gives me is prefix-based filtration). I need a workaround for processing small-sized millions of file objects. I'm also open to bulk deletion of blob files based on filename (and leaving behind ones I need) if push came to shove.