gpt4 book ai didi

powershell - PowerShell : Capturing Error for [IO.File]::ReadAllText

转载 作者:行者123 更新时间:2023-12-03 07:55:35 31 4
gpt4 key购买 nike

我试图弄清楚如何捕获以下PowerShell代码行的错误消息(例如,如果运行脚本的用户无权读取文件):

[IO.File]::ReadAllText("C:\[test].txt")

使用 Get-Content,我可以简单地指定 ErrorActionErrorVariable参数。以上代码行似乎并非如此。

谢谢!

最佳答案

使用try ... catch块

try{

[IO.File]::ReadAllText("C:\blah")
}
catch{
#handle here. Catch specific exceptions as well.
}

关于powershell - PowerShell : Capturing Error for [IO.File]::ReadAllText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7989879/

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