I use Azure to host my asp.net site as WebSite, which allows the user to retrieve files. There is a 1 GB limit on the website, so I have to attach storage to this website.
My problem is that I want to associate this repository with WebSite and pragmatically extract the files stored there.
Secondly, there is another website that will host resources inside this blob. For faster access, I want to use ftp for this. Blob does not allow ftp directly for containers.
For attaching a blob, I found a link from Azure that you can use, but don't mind if there is a better approach for this.
I have custom FTP code , but the problem is why the azure does not allow opening the repository using ftp, and secondly, will there be much difference in using this ftp and downloading the file using the rest that it provides?
Ankit source
share