1

我有一种情况,我试图从命令行创建一个 zip 文件,但我试图添加一个以点开头的文件。

powershell Compress-Archive -Path .\Dist\._test.txt -DestinationPath .\test

但这给出了一个错误Could not find item Dist\._test.txt

如何让这个 powershell 命令包含以这种方式命名的文件?

4

2 回答 2

0

请你能像这样试试吗,我测试过同样的,它工作正常

powershell Compress-Archive -Path "C:\location\.test.png" -DestinationPath "C:\location\destination"
于 2018-11-21T12:34:47.223 回答
0

资源管理器设置为显示隐藏项目。出于某种原因,它没有给出这是一个隐藏文件的视觉指示。我删除了“隐藏”的复选框,它工作正常。

于 2018-11-21T15:10:19.190 回答