- 已关闭。**此问题为not about programming or software development。当前不接受答案。
此问题似乎与a specific programming problem, a software algorithm, or software tools primarily used by programmers无关。如果您认为此问题与another Stack Exchange site的主题有关,您可以留下评论,说明在何处可以回答此问题。
22小时前关门了。
Improve this question
我想压缩一个文件及其子目录。
该文件位于以下位置:
D:\MyDirectory\html\SomeFile.html
它的子目录中有附带的文件:
D:\MyDirectory\html\SomeFile-Files
我想创建以下文件:
D:\MyDirectory\html\SomeFile.html.zip
它应该包含html文件和子目录。它不应该包含文件夹"html"。
为了实现这一点,我做了以下工作:
首先,我转到7z目录。如果我不这样做,它将找不到7z。
ChDrive ("C")
ChDir "\Program Files\7-Zip"
那么我称之为:
7z a -r "D:\MyDirectory\html\SomeFile.html.7z" "./D:\MyDirectory\html/*"
我收到错误:文件名、目录名或驱动器的语法错误。
我哪里做错了?
1条答案
按热度按时间ffscu2ro1#
我不得不把./,其他一切都很好。