在Azure Data Lake Store(Gen2)中自动创建文件夹

时间:2019-10-26 15:17:33

标签: azure-storage azure-automation

有什么方法可以实用地自动化ADLS Gen2中的文件夹创建。在生产订阅中,从门户网站访问权限有限,需要执行此操作。

如果有任何建议,请对此提供帮助。

2 个答案:

答案 0 :(得分:0)

为了让更多的读者受益,请重新分享杨van琳的评论作为答案。

您可以使用其余的API here

答案 1 :(得分:0)

您可以为此使用Azure cli,但仍处于预览状态。

#add the extension
az extension add --name storage-preview 

# Create Directory   
$dirCheck = az storage blob directory exists -c $filesystemName -d $dirname     --account-name $storageaccountname --debug
$exists = $dirCheck | ConvertFrom-Json
If (-Not $exists.exists[0])
{
    az storage blob directory create -c $filesystemName -d $dirname --account-name $storageaccountname 
}