Azure 使用u sql在data lake store上上载图像

Azure 使用u sql在data lake store上上载图像,azure,azure-data-lake,Azure,Azure Data Lake,我需要将多个图像从本地文件夹上载到Azure Data lake store 我在看链接: 我可以获得图像的详细信息,但我还想在Azure Data lake store上上载多个图像。 请建议,是否可以在U SQL中使用,或者我需要使用任何其他方法进行相同的操作? 这将是伟大的,如果你将分享任何参考链接相同 感谢使用PowerShell # Log in to your Azure account Login-AzureRmAccount # Modify variables as req

我需要将多个图像从本地文件夹上载到Azure Data lake store

我在看链接:

我可以获得图像的详细信息,但我还想在Azure Data lake store上上载多个图像。
请建议,是否可以在U SQL中使用,或者我需要使用任何其他方法进行相同的操作?
这将是伟大的,如果你将分享任何参考链接相同

感谢使用PowerShell

# Log in to your Azure account
Login-AzureRmAccount

# Modify variables as required
$DataLakeStoreAccount =  #"<yourAccountNameHere>";
$DataLakeStorePath = "/Samples/Data";
$destinationFile = "/Samples/Data/Test.txt";
$localFile = "C:\Temp\Test.txt";


# upload file
Import-AzureRmDataLakeStoreItem -AccountName $DataLakeStoreAccount -Path $localfile -Destination $destinationFile;
# https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakestore/import-azurermdatalakestoreitem?view=azurermps-3.8.0

#verify
Get-AzureRmDataLakeStoreChildItem -AccountName $DataLakeStoreAccount -Path $DataLakeStorePath;
# https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakestore/get-azurermdatalakestorechilditem?view=azurermps-3.8.0
#登录到您的Azure帐户
登录AzureRmAccount
#根据需要修改变量
$DataLakeStoreAccount=#“”;
$DataLakeStorePath=“/Samples/Data”;
$destinationFile=“/Samples/Data/Test.txt”;
$localFile=“C:\Temp\Test.txt”;
#上传文件
导入azurermdatalakestreitem-AccountName$datalakestreaccount-Path$localfile-Destination$destinationFile;
# https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakestore/import-azurermdatalakestoreitem?view=azurermps-3.8.0
#核实
获取AzureRmDataLakeStoreChildItem-AccountName$DataLakeStoreAccount-Path$DataLakeStoreRepath;
# https://docs.microsoft.com/en-us/powershell/module/azurerm.datalakestore/get-azurermdatalakestorechilditem?view=azurermps-3.8.0

这里是一个指向文档的链接,说明了这一点: