Reputation: 33
Is it possible to create a folder in Azure DataLake gen 2 with Azure CLI?
Something like with this code:
dls fs create --account my-storage-account --folder --path my-folder
Or are there some other tools which could help to automate creation of DataLake gen2 with folders and role assignments?
Upvotes: 0
Views: 1014
Reputation: 716
I know it's late to answer this question but I was able to create an empty folder using cli
the service principal should have valid scops and use the latest az CLI
output was:
{
"content_length": 0,
"continuation": null,
"date": "<removed>",
"etag": "\"<removed>\"",
"last_modified": "2021-05-11T18:32:03+00:00",
"request_id": "<removed>",
"version": "<removed>"
}
Upvotes: 0
Reputation: 14324
You could know the tools limits for now is not supported from this doc: Programming interfaces and this Known issues.
Fro now the tools you could use:
Upvotes: 1