0

我的公司有一个 BizSpark 帐户,我们需要传输一个大图像文件,以便稍后在我们的网站数据库中使用。该文件大约为 550 GB,我需要将其转移到免费的 BizSpark Azure 帐户之一。我们是 BizSpark 和 Azure 的新手,因此我们将不胜感激任何提示。传输文件的人要求我们向他们提供 FTP 详细信息,例如服务器名称、用户名和密码。

非常感谢。

4

1 回答 1

0

我将提供两种将内容上传到 Azure 存储的方法。

1) 使用免费存储工具。这是我使用的两个工具,但您还有其他选择,包括付费选项。

Azure 存储资源管理器

Azure 资源管理器

2)使用PowerShell

这是我从本文中借用的一个简单脚本

# Azure subscription-specific variables.
$storageAccountName = "storage-account-name"
$containerName = "container-name"

# Find the local folder where this PowerShell script is stored.
$currentLocation = Get-location
$thisfolder = Split –parent $currentLocation

# Upload files in data subfolder to Azure.
$localfolder = "$thisfolder\data"
$destfolder = "data"
$storageAccountKey = (Get-AzureStorageKey -StorageAccountName $storageAccountName).Primary
$blobContext = New-AzureStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey
$files = Get-ChildItem $localFolder foreach($file in $files)
{
  $fileName = "$localFolder\$file"
  $blobName = "$destfolder/$file"
  write-host "copying $fileName to $blobName"
  Set-AzureStorageBlobContent -File $filename -Container $containerName -Blob $blobName -Context $blobContext -Force
} 
write-host "All files in $localFolder uploaded to $containerName!"
于 2015-03-17T12:02:18.830 回答