Click here to Skip to main content
15,886,258 members
Articles / Programming Languages / C++
Article

C++ Win32 Command Line Tail - Made Easy

Rate me:
Please Sign up or sign in to vote.
1.95/5 (15 votes)
2 Apr 2006 40.6K   877   12   4
Tail Program - Similar to unix tail - I found tail programs - but not a good CUI project. It runs continuously and prints the last characters as soon as the file gets updated. Coding is very easy - and one can reuse and move further with it

Sample Image - Tail.jpg

Introduction

This is a command line tail program which prints the last updated characters of a file. One can use this to view the log files.

This program keeps on running and as soon as the file gets updated, the last characters are shown.

Usage

Tail [Absolute File Path]

Example:

tail c:\demo.txt
Above command shows the last characters of the file as soon as it is updated and waits again for the file to be updated

About The Code

Code is very simple - still some notes on it.

  • getftime - Small function to get the File Timestamp in character array.
  • getfnoc - Returns number of characters of a file
  • Logic: First I opened the file, got its timestamp and total characters present. Next in a loop - with sleep delay, i am checking the timestamp with initial one, and if there is diffrence, just printing the added characters and updating the variable for total characters. Thats All. Very Easy.

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


Written By
Web Developer
India India
Hi, I am a simple programmer and try to make things as simple as possible.

I code in c++, vb, perl etc. and try making simple objects out of things which look very hard

Comments and Discussions

 
GeneralMy vote of 2 Pin
Member 37857014-Mar-09 4:21
Member 37857014-Mar-09 4:21 
GeneralDon't work Pin
robertomir19-May-07 2:11
robertomir19-May-07 2:11 
GeneralSome issues Pin
prcarp3-Apr-06 4:19
prcarp3-Apr-06 4:19 
GeneralRe: Some issues Pin
kbfromindia3-Apr-06 20:39
kbfromindia3-Apr-06 20:39 

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

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