I created an Azure Storage account. I have a 400 megabytes .zip file that I want to put into blob storage for later use.
How can I do that without writing code? Is there some interface for that?
|
I created an Azure Storage account. I have a 400 megabytes .zip file that I want to put into blob storage for later use. How can I do that without writing code? Is there some interface for that? |
||||
|
|
|
If you're looking for a tool to do so, may I suggest that you take a look at our tool Cloud Storage Studio (http://www.cerebrata.com/Products/CloudStorageStudio). It's a commercial tool for managing Windows Azure Storage and Hosted Service. You can also find a comprehensive list of Windows Azure Storage Management tools here: http://blogs.msdn.com/b/windowsazurestorage/archive/2010/04/17/windows-azure-storage-explorers.aspx Hope this helps. |
|||
|
|
|
I use Cyberduck to manage my blob storage. It is free and very easy to use. It works with other cloud storage solutions as well. I recently found this one as well: CloudXplorer Hope it helps. |
||||
|
|
|
The StorageClient has this built into it. No need to write really anything:
|
|||
|
Free tools:
There was an old program called Azure Blob Explorer or something that no longer works with the new Azure SDK. Out of these, I personally like CloudBerry Explorer the best. |
|||
|
|
|
Try the http://msdn.microsoft.com/en-us/library/dd135733.aspx However, 400mb is a large file and I am not sure a single API call will deal with something of this size, you may need to split it and reconstruct using custom code. |
|||
|
|
|
You can upload large files directly to the Azure Blob Storage directly using the HTTP PUT verb, the biggest file I have tried with the code below is 4,6 Gb. You can do this in C# like this:
The UploadUrl is generated by Azure itself and contains a Shared Access Signature, this SAS URL says where the blob is to be uploaded to and how long time the security access (write access in your case) is given. You can generate a SAS URL like this:
I also have a thread on the subject where you can find more information here How to upload huge files to the Azure blob from a web page |
||||
|
|
|
You can use Cloud Combine for reliable and quick file upload to Azure blob storage. |
|||
|
|