GitHub zip 文件通常在 zip 中包含一个目录。我想将压缩目录的内容解压到另一个目录,如 Linux 答案所示:如何从压缩档案中仅提取特定文件夹到给定目录?
例如unzip <target-zip-file> '<folder-to-extract/*>' -d <destination-path>
该命令仍会将文件提取到destination-path\folder-to-extract
。如何在不创建 的情况下进行提取folder-to-extract
?
(-j 修饰符丢弃所有目录。)