Reputation: 385
I have a basic web site hosted in Windows Azure. This is a web site running under SHARED mode. It allows users to upload a couple of photos. Currently, users can successfully upload photos. The uploaded photos get stored in a directory thats created dynamically based on the username.
I need to download these photos for backup purposes. My question is, how do I get them? Its not like I can login to the machine and just grab the directory structure and zip it up.
What options do I have here?
Thanks!
Upvotes: 0
Views: 156
Reputation: 24895
You can access all data which is stored in Windows Azure Web Sites through FTP (more info: Windows Azure Website: Uploading/Downloading files over FTP and collecting Diagnostics logs).
Upvotes: 1
Reputation: 26829
My suggestion would be to upload the photos to Azure Blob Service. They will be securely stored in the cloud and you will have access to them any time you need. Also if anything happen on your server, you will be able to fetch the photos from the blob service.
You will not have to even download user photos for backup if they are stored in the blob.
Upvotes: 2