Question 332:
You designed the storage of logs pertaining to the blob service in such a way that it goes into an Azure storage account named ‘testStorageAccount’. You enabled storage analytics logging in the Azure portal. You have a high volume of log data with multiple files for each hour. You are using the blob metadata to determine what data the log contains after examining the blob metadata fields. You want to download the log data for the blob service for the hours starting at 11 AM, 11.30 AM, and 12 PM on 2nd June 2020 into a local server path “C:\StorageLogs” using Azure copy tool. Which one of the commands is suitable to achieve this?
Answer options:
A.azcopy copy `https://testStorageAccount.blob.core.windows.net/$logs/blob `C:\StorageLogs` --include-path `2020/06/02/11;2020/06/02/1130;2020/06/02/12` –recursive B.azcopy copy `https://testStorageAccount.blob.core.windows.net/$logs/blob `C:\StorageLogs` --include-path `2020/06/02/11;2020/06/02/12` –recursive C.azcopy copy `https://testStorageAccount.blob.core.windows.net/$logs/queue` `C:\StorageLogs` --include-path `2020/06/02/11;2020/06/02/1130;2020/06/02/12` –recursive D.azcopy copy `https://testStorageAccount.blob.core.windows.net/$logs/blob `C:\StorageLogs` --include-path `2020/06/02/11;2020/06/02/1130;2020/06/02/12’ --include-pattern “.log” –recursive