您好,登錄后才能下訂單哦!
Azure的文件存儲結構如下所示,最基本的文件存儲包含存儲賬號,文件共享,在文件共享下面你可以建立文件目錄,上傳文件:
在開始使用Powershell創建文件共享之前,你需要獲得Azure的賬號,安裝powershell,配置你的賬號,請參考我以前的博客,在此不再贅述。
首先,創建Azure storage account,需要設置你的storage賬號的名稱,以及你的存儲賬號是創建在那個region,比如中國東部:
$StorageAccountName="mystorageacctfile"
$Location="China East"
New-AzureStorageAccount –StorageAccountName $StorageAccountName -Location $Location
通過命令得到你的當前存儲賬號的key,設置你的當前訂閱,和當前訂閱的存儲賬號:
#得到存儲的key值
Get-AzureStorageKey -StorageAccountName $StorageAccountName
#設置當前訂閱的默認存儲
Set-AzureSubscription -CurrentStorageAccountName $StorageAccountName -SubscriptionId $SubscriptionID
通過Powershell來創建Azure file 的文件存儲
#獲得Azure存儲的上下文
$ctx=New-AzureStorageContext $StorageAccountName $StorageAccountKey
#創建Azure file共享服務
$share = New-AzureStorageShare $filesharename -Context $ctx
#列出當前Azure文件共享服務
Get-AzureStorageShare -Context $ctx -Name $filesharename
登陸到Azure的portal上,你可以看到已經配置好的存儲賬號和文件服務:
如果你希望你的文件服務實現跨地區的冗余,你可以在配置項進行配置:
到目前為止文件共享服務已經創建完畢了,那么我們使用Powershell來使用文件共享服務,包括創建目錄,上傳一個文件,列出文件:
#創建文件共享目錄
New-AzureStorageDirectory -Share $share -Path logs
#上傳一個文件到文件共享目錄
Set-AzureStorageFileContent -Share $share -Source d:\hdinsight.publishsettings -Path logs
# 列出目錄下的所有文件
Get-AzureStorageFile -Share $share -Path logs | Get-AzureStorageFile
# List all your files
Get-AzureStorageFile -Share $share -Path logs | Get-AzureStorageFile
和其他存儲類似,你可以使用powershell在File和File之間,File和Blob之間進行拷貝:
Start-AzureStorageFileCopy -SrcShareName $filesharename -SrcFilePath "logs/hdinsight.publishsettings" -DestShareName $filesharenamenew -DestFilePath "logs/hdinsight.publishsettings" -Context $ctx -DestContext $ctx
所有相關測試腳本已經更新到了github,你可以下載源代碼測試:
https://github.com/kingliantop/azurelabs/blob/master/storage/StorageFileShare.ps1
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。