2

我有一个函数来检索文本文件的最后 n 行(在本例中为日志文件):

function Get-Tail([object]$reader, [int]$count = 10) {

    $lineCount = 0
    [long]$pos = $reader.BaseStream.Length - 1

    while($pos -gt 0)
    {    
        $reader.BaseStream.position=$pos

        if ($reader.BaseStream.ReadByte() -eq 10)
        {
            $lineCount++
            if ($lineCount -ge $count) { break }
        } 
        $pos--
    } 

    # tests for file shorter than requested tail
    if ($lineCount -lt $count -or $pos -ge $reader.BaseStream.Length - 1) {
        $reader.BaseStream.Position=0
    } else {
        $reader.BaseStream.Position = $pos+1
    }

    # debug
    write-host $reader.readtoend()

    [....]
}

在 Write-Host 处捕获我发现 $pos 为 166(即远在 EndOfStream 之前)。

输出是:

2013/02/23 03:39:13 ERROR 2 (0x00000002) Accessing Source Directory \\[redacted]
The system cannot find the file specified. -------------------------------------------------------------------------------

  Started : Sat Feb 23 03:39:13 2013

   Source : [redacted]
     Dest : [redacted]

    Files : *.*

  Options : *.* /FFT /V /TS /FP /NDL /TEE /S /E /COPY:DATS /SECFIX /PURGE /MIR /B /NP /XO /XN /XC /R:0 /W:0 

------------------------------------------------------------------------------

2013/02/23 03:39:13 ERROR 2 (0x00000002) Accessing Source Directory \\[redacted]
The system cannot find the file specified. 

因此,最后两行被重复。我已经尝试过先冲洗流式阅读器,没有任何可能。

这有点令人困惑。我想我犯了一个小学生错误,但不知道是哪一个。请问有什么想法吗?

4

1 回答 1

0

如果您可以远离 StreamReader,那么您可以使用这个简单的命令来检索文本文件中的最后 x 行。

Get-Content C:\example.txt -Tail 10 
于 2013-02-25T14:58:10.700 回答