When downloading a large folder (>50 GB) from Google Drive it'll split the download up in multiple smaller ZIP-files (about 2 GB each) which makes the original master folder a nightmare to put together again with all the files in their correct subfolders.
How do I merge/combine multiple downloaded ZIP-files from Google Drive on Mac?
Here's an existing thread about this that I couldn't reply to since I'm new to stackoverflow: Combine the split zip files downloading from Google Drive
In this thread, they mention this command:
mkdir combined
unzip '*.zip' -d combined
However, how do I make this command only unzip and combine my specific ZIP-files in my Downloads-folder and not all ZIP files on my entire drive? The command doesn't seem to specify the Downloads-folder, which makes me worried that it'll unzip and combine all files on my entire drive. I have some ZIP files on my hard drive that I don't want to unzip. Also, someone mentions this command doesn't work with characters in other languages (like û, å, ä, ö) so how can I make it work for my Swedish file names?