Reputation: 743
I'm trying to publish a package that has 800mb+. But the Windows Azure publish only allows up to 600mb, so maybe I need to upload some unstructured files first to Windows Azure storage.
What's the best way to upload files to a Windows Azure storage?
Upvotes: 20
Views: 45143
Reputation: 1
A suggestion to help you might be to upload the files with help of the UploadFromStream() method in the blobs storage SDK. To implement this method, you need to know the Container Name, Archive Storage Account, and Storage Key.
As the method demands the usage of custom coding, you can leverage third-party tools like Cerebrata (https://cerebrata.com/). The tool basically allows you to upload files of any size and also provides options to customize the chunk size, overwrite behavior, file extension, and block blob access tier.
Upvotes: 0
Reputation: 95
Used ftp client i.e filezilla client to upload files from client to remote machine Note : first create ftp credentials in azure.
Upvotes: -3
Reputation: 5097
Another way is: http://storageexplorer.com/
To Upload files:
Upvotes: 19
Reputation: 71031
what's the best way to upload files to a windows azure storage?
There's no best way - you'll need to decide that for yourself. But... here are a few options:
Set-AzureStorageBlobContent
, which copies a local file to a blobazure storage blob upload
, which copies a local file to a blobUpvotes: 25