I want to extract all files and folders from a zipfile which is stored on an Azure Blob Storage. The extracted data should be stored in a output folder.
I have a zipfile stored in Azure Blob Storage. The zipfile contains a subfolder. So it’s like this:
ExportPV.zip contains:
export/file1.csv
export/file2.csv
I have created a pipeline in Azure Data Factory with a copy data activity. For more info: https://www.youtube.com/watch?v=lFlOTJbE5pc
This method works for zipfiles which don’t contain a subfolder. So this will work:
ExportPV2.zip contains:
file1.csv
file2.csv
Is there a way to extract the data including the folders from the zip file using Azure Data Factory?