I download 1 large folder 10 GB from Google Drive but it becomes several zipped files. I would like to combine the downloaded split zipped files from Google Drive with its original folder and sub-folder structure. The parents' folder contains 4 sub-folders, which each of the sub-folder contains 24 .mp4 video files.
Please advise
Here's a solution for Mac or Linux command line.
mkdir combined
unzip '*.zip' -d combined
Or, for Windows Powershell, you can try (courtesy of source):
Get-ChildItem 'path to folder' -Filter *.zip | Expand-Archive -DestinationPath 'path to extract' -Force
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With