为什么 Write-Verbose 消息不会从条件中出现

Why Write-Verbose messages don't appear from conditions

我正在尝试接收每个排序步骤的详细消息和 运行 我的带有 -Verbose 键的脚本,但我没有收到来自条件(循环)的任何详细消息。只有当我在条件之外调用它们时,我才会收到我的消息。请帮助

    [CmdletBinding()]
    param()
    set-location "\test folder"
    $listOfItems = Get-ChildItem | Select-Object -Property Name, Mode, LastWriteTime, @{label = "FileSize (MB)";expression = {$_.Length/1024/1024}}
    $bufferItem = 0
    for ($i = $listOfItems.Length - 1; $i -eq 0; $i--) {
        for ($j = 0; $i -lt $i; $j++) {
            if ($listOfItems[$j]."FileSize (MB)" -gt $listOfItems[$j + 1]."FileSize (MB)") {            
                Write-Verbose -Message "Transfer the value of the buffer variable to the element below the list"
                continue
            }
            elseif ($listOfItems[$j]."FileSize (MB)" -lt $listOfItems[$j + 1]."FileSize (MB)") {
                $bufferItem = $listOfItems[$j]
                $listOfItems[$j] = $listOfItems[$j + 1]
                $listOfItems[$j + 1] = $bufferItem
            }
            Write-Verbose -Message "Transfer the value of the buffer variable to the element below the list"
        }
    }

您的内部循环条件中存在错误:

for ($j = 0; $i -lt $i; $j++) {

由于 $i -lt $i 永远不会计算为 $true,内部循环体永远不会执行,并且不会到达任何 Write-Verbose 语句。

修复循环条件,你会发现 Write-Verbose 在条件语句中工作得很好。