我有一种情况,我试图从命令行创建一个 zip 文件,但我试图添加一个以点开头的文件。
powershell Compress-Archive -Path .\Dist\._test.txt -DestinationPath .\test
但这给出了一个错误Could not find item Dist\._test.txt
如何让这个 powershell 命令包含以这种方式命名的文件?
我有一种情况,我试图从命令行创建一个 zip 文件,但我试图添加一个以点开头的文件。
powershell Compress-Archive -Path .\Dist\._test.txt -DestinationPath .\test
但这给出了一个错误Could not find item Dist\._test.txt
如何让这个 powershell 命令包含以这种方式命名的文件?