先看一個(gè)腳本文件:3.three.test.ps1
復(fù)制代碼 代碼如下:
Get-FanBingbing #命令不存在
然后這樣捕獲:
復(fù)制代碼 代碼如下:
trap [exception]
{
'在trap中捕獲到腳本異常'
$_.Exception.Message
continue
}
.\3.three.test.ps1
異常捕獲成功,輸出:
復(fù)制代碼 代碼如下:
在trap中捕獲到腳本異常
The term 'Get-FanBingbing' is not recognized as the name of a cmdlet
接下來(lái)我把3.three.test.ps1腳本文件的內(nèi)容改成:
復(fù)制代碼 代碼如下:
dir D:\ShenMaDoushiFuYun #目錄不存在
再運(yùn)行,這時(shí)沒(méi)有捕獲到異常,錯(cuò)誤為:dir : Cannot find path ‘D:\ShenMaDoushiFuYun' because it does not exist.
于是我想是不是因?yàn)榻K止錯(cuò)誤與非終止錯(cuò)誤的區(qū)別:所以還寫(xiě)了try catch捕獲語(yǔ)句,雙管齊下:
復(fù)制代碼 代碼如下:
trap [exception]
{
'在trap中捕獲到腳本異常'
$_.Exception.Message
continue
}
try{
.\3.three.test.ps1
}
catch{
'在catch中捕獲到腳本異常'
$_.Exception.Message
}
異常仍舊:dir : Cannot find path ‘D:\ShenMaDoushiFuYun' because it does not exist.
看來(lái)問(wèn)題不在這里。事實(shí)上是ErrorActionReference的問(wèn)題,這樣改就OK啦:
復(fù)制代碼 代碼如下:
trap [exception]
{
'在trap中捕獲到腳本異常'
$_.Exception.Message
continue
}
$ErrorActionPreference='stop'
.\3.three.test.ps1
輸出為:
復(fù)制代碼 代碼如下:
在trap中捕獲到腳本異常
Cannot find path 'D:\ShenMaDoushiFuYun' because it does not exist.
簡(jiǎn)單分析:
像Get-FanBingbing這樣的異常,是因?yàn)槊畈淮嬖?,確切來(lái)講屬于語(yǔ)法錯(cuò)誤,級(jí)別比較高被trap到了。但是像目錄找不到這樣的異常,相對(duì)而言級(jí)別比較低,默認(rèn)不能捕獲到,除非顯示指定ErrorAction為stop。
您可能感興趣的文章:- Stream、WshShell、WshUrlShortcut對(duì)象及Shell.Application的參數(shù)與使用
- PowerShell: Try...Catch...Finally 實(shí)現(xiàn)方法
- PowerShell中使用Out-String命令把對(duì)象轉(zhuǎn)換成字符串輸出的例子
- PowerShell小技巧之True和False的類(lèi)型轉(zhuǎn)換
- shell實(shí)現(xiàn)tr刪除替換詳解