1
我有在電源外殼(在Windows Server 2016 TP3)PowerShell的zip文件提取醒目exceptons
$zipFrom = Get-Item($zipfilepath);
$destTo=Get-Item($destination)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfrom,$destTo)
問題下面的代碼是,我得到了可怕的260個字符的文件限制錯誤。問題是我如何忽略錯誤並繼續提取?