gpt4 book ai didi

logging - 停止脚本并记录错误

转载 作者:行者123 更新时间:2023-12-03 01:22:44 24 4
gpt4 key购买 nike

我有一个Powershell脚本,需要使用简单的Get-Content cmdlet从配置文件中读取它:

 foreach ($s in Get-Content $config_file)

如果配置文件不在应有的位置,我要停止脚本并记录错误。

是否可以在脚本中使用带有错误日志记录功能的-ErrorAction?
foreach($s in Get-Content $config_file -ErrorAction mdie('Could not find config file')

mdie是一个日志记录功能,用于记录错误并退出脚本。

或者,还有更好的方法?

-G

最佳答案

使用-ErrorAction Stoptry..catch模式。在catch块中,错误对象由变量$_表示。

function LogErrorAndExit([string]$message) {
Write-Host $message -ForegroundColor Red
exit 1
}

try {
foreach($s in Get-Content $config_file -ErrorAction Stop) {
# normal code
# ...
}
}
catch {
# error case code
LogErrorAndExit $_
}

# normal code
# ...

关于logging - 停止脚本并记录错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8035964/

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