gpt4 book ai didi

powershell - 复制前检查源文件是否存在

转载 作者:行者123 更新时间:2023-12-03 01:06:14 27 4
gpt4 key购买 nike

我有文件列表,我正在尝试复制到另一个位置。

$files = @("abc.ps1", "def.ps1")
$scriptFiles | Copy-Item -Destination "destinationlocation" -Force

所以当文件abc.ps1不可用时出现错误,是否可以避免编写循环并单行写入 Test-Path

最佳答案

过滤掉Test-Path子句中Where不存在的那些。

$files = @("abc.ps1", "def.ps1")
$files | Where { Test-Path $_ } | ForEach { $file = Get-Item $_; Copy-Item "destinationlocation\$_" -Force; }

或相同脚本的简写形式:
$files = @("abc.ps1", "def.ps1")
$files | ?{ Test-Path $_ } | %{ $file = gi $_; cp $file.FullName "destinationlocation\$_" -Force; }

关于powershell - 复制前检查源文件是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48350769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com