合并从 Google Drive 下载的拆分 zip 文件 [英] Combine the split zip files downloading from Google Drive

查看:51
本文介绍了合并从 Google Drive 下载的拆分 zip 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从 Google Drive 下载了 1 个 10 GB 的大文件夹,但它变成了几个压缩文件.我想将从 Google Drive 下载的拆分压缩文件与其原始文件夹和子文件夹结构结合起来.父文件夹包含 4 个子文件夹,每个子文件夹包含 24 个 .mp4 视频文件.

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.

请指教

推荐答案

这里有一个 解决方案.

mkdir combined
unzip '*.zip' -d combined

或者,对于 Windows Powershell,您可以尝试(由 source):

Or, for Windows Powershell, you can try (courtesy of source):

Get-ChildItem 'path to folder' -Filter *.zip | Expand-Archive -DestinationPath 'path to extract' -Force

这篇关于合并从 Google Drive 下载的拆分 zip 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆