我正在尝试使用Windows 10上的powershell 5从文件夹创建一个zip。看完这个stackoverflow post后,我正在尝试使用Compress-Archive方法。
当我输入时:
Compress-Archive -Path 'C:\Users\Test\demo' -DestinationPath 'C:\Users\Test\demo.zip' -verbose
我得到一个冗长的错误说:
VERBOSE: The partially created archive file 'C:\Users\Test\demo.zip' is deleted as it is not usable.
我在网上随处可见,但我无法找到解决方法。有谁知道发生了什么?
答案 0 :(得分:0)
如果您正在压缩的文件夹为空,则会出现此消息。
答案 1 :(得分:0)
我有同样的问题,
我的路径目录中保存着一个*
,就像
d:\somedirectory\*
,我删除了*,它在看起来像d:\somedirectory
因此,我的看法是,在使用路径时,您需要格外小心。