作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请问$?值一直设置为true?在下面的示例中,由于我编写了silentlycontinue
,因此将其设置为TRUE。在此脚本中,我正在管理文件的错误处理,以从用户输入中获取内容:用于测试文件是否繁忙的脚本,请等待2秒钟,然后再次访问文件,如下所示:
$filecontent = get-content $filename -ea silentlycontinue
**while (-not $?)**
{
$filecontent = get-content $filename -ea silentlycontinue
start-sleep: -sec 2
}
最佳答案
$? Contains the execution status of the last operation. It contains TRUE if the last operation succeeded and FALSE if it failed.
PS>$ErrorActionPreference="continue"
PS>gc afile.txt
gc : Impossible de trouver le chemin d'accès « C:\Users\u1\afile.txt », car il n'existe pas.
Au caractère Ligne:1 : 1
+ gc afile.txt
+ ~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Users\u1\afile.txt:String) [Get-Content], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand
PS>$?
False
PS>$ErrorActionPreference="silentlycontinue"
PS>gc afile.txt #no error message displayed
PS>$?
False
function openFile{
try{
$file=[System.io.File]::Open('c:\windows\windowsupdate.log', 'Open', 'Read', 'None')
}
catch{
write-host "File is locked"
start-sleep 2
openFile
}
finaly{
return $file
}
}
$ErrorActionPreference="stop"
$file=openFile
关于powershell - 我想知道如何在$中执行此操作吗?在PowerShell中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29691140/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!