Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Combine the split zip files downloading from Google Drive [closed]

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

like image 991
Nguyen Avatar asked Mar 25 '20 02:03

Nguyen


1 Answers

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
like image 52
klondike923 Avatar answered Sep 23 '22 16:09

klondike923