Additional Azure Blob Storage folder in addition t...
# help-with-umbraco
m
Hey, we have a v10 site on Azure using blob storage that has a bunch of legacy media files that have to live in a different folder than the standard
media
folder in the container. These files live in an additional folder called
uploads
. I want to be able to set this up so that they work seemless, e.g. if you go to
https://website.com/uploads/some-file.jpg
it picks it up from the
uploads
folder in the blob storage container. Has anyone done this before, or have any suggests for an elegant solution?
s
I'd take inspiration from
Umbraco.StorageProviders.AzureBlob
- the path is set to
media
there but it does exactly what you're asking for otherwise. https://github.com/search?q=repo%3Aumbraco%2FUmbraco.StorageProviders%20VirtualPath&type=code
m
Thanks dude 😄