Reputation: 371
Is there any way to read the file data present in Azure data lake store with azure powershell cmdlets?
Upvotes: 1
Views: 1364
Reputation: 965
Here is the step by step on just the powershell itself: https://learn.microsoft.com/en-us/azure/data-lake-store/data-lake-store-get-started-powershell
You can use Get-AzureRmDataLakeStoreItemContent thereafter
Upvotes: 2
Reputation: 14379
Try Get-AzureRmDataLakeStoreItemContent which gets the contents of a file in Azure Data Lake Store. An example:
Login-AzureRmAccount
Get-AzureRmDataLakeStoreItemContent -AccountName "yourADLSAccountName" -Path "/input/someFile.txt"
Upvotes: 1