Click here to Skip to main content
Licence 
First Posted 29 Jun 2004
Views 46,994
Bookmarked 26 times

Tail.NET

By | 29 Jun 2004 | Article
How to read changes from log files as they are written to. Similar to "tail" from UNIX.

Introduction

I've often remembered using the "tail" command in Linux and thought I could use the same thing in Windows. I've never been able to find a suitable Win32 replacement for the old utility so I had to roll my own. The only use I've found for the program is monitoring log files.

Using the code

There is very little code required to read the changes from a given file. The most notable piece from below is the way that the FileStream is created to read files that may be open by other processes. If you try to use the StreamReader's constructor to open a file in use by another process, you will get an exception. Of course, being able to read open files was crucial to this utility.

using ( StreamReader reader = new StreamReader(new FileStream(fileName, 
                     FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) )
{
    //start at the end of the file
    long lastMaxOffset = reader.BaseStream.Length;

    while ( true )
    {
        System.Threading.Thread.Sleep(100);

        //if the file size has not changed, idle
        if ( reader.BaseStream.Length == lastMaxOffset )
            continue;

        //seek to the last max offset
        reader.BaseStream.Seek(lastMaxOffset, SeekOrigin.Begin);

        //read out of the file until the EOF
        string line = "";
        while ( (line = reader.ReadLine()) != null )
            Console.WriteLine(line);

        //update the last max offset
        lastMaxOffset = reader.BaseStream.Position;
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Taylor Wood

Web Developer

United States United States

Member

I write c#

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThanks PinmemberSk8tz9:25 26 Sep '10  
GeneralThanks! PinmemberChris Noffke10:00 8 Oct '07  
Questionhello Pinmemberfairchild11819:04 10 May '06  
GeneralBetter method - FileSystemEventHandler PinmemberWhoopsies12:27 5 Jun '05  
GeneralRe: Better method - FileSystemEventHandler PinmemberRichNFamous5:38 9 Feb '07  
GeneralVery Important Code Pinmemberntorrisi22:04 11 Feb '05  
QuestionHow about trying UnxUtils... Pinmemberfuzzylintman15:18 5 Jul '04  
AnswerRe: How about trying UnxUtils... PinmemberEric Engler12:29 20 Jul '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 30 Jun 2004
Article Copyright 2004 by Taylor Wood
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid