add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,24 +1,24 @@
# expand
# 解压
> 解压一个或多个 cab 文件。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/expand>.
> 解压 Windows Cabinet 文件。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/expand>
- 将单文件 cab 文件解压到指定目录:
- 将单文件 Cabinet 文件解压到指定目录:
`expand {{cab 文件路径}} {{指定的目录}}`
`expand {{path\to\file.cab}} {{path\to\directory}}`
- 列出 cab 文件中的所有文件:
- 显示源 Cabinet 文件中的文件列表
`expand {{cab 文件路径}} {{指定的目录}} -d`
`expand {{path\to\file.cab}} {{path\to\directory}} -d`
-cab 文件中解压所有文件:
-Cabinet 文件中解压所有文件:
`expand {{cab 文件路径}} {{指定的目录}} -f:*`
`expand {{path\to\file.cab}} {{path\to\directory}} -f:*`
-cab 文件中解压一个特定文件:
-Cabinet 文件中解压特定文件:
`expand {{cab 文件路径}} {{指定的目录}} -f:{{文件名}}`
`expand {{path\to\file.cab}} {{path\to\directory}} -f:{{path\to\file}}`
- 解压时忽略目录结构,并将它们添加到单目录
- 解压时忽略目录结构,并将文件添加到单目录:
`expand {{cab 文件路径}} {{指定的目录}} -i`
`expand {{path\to\file.cab}} {{path\to\directory}} -i`