vote up 0 vote down star

I would like to create a class that creates and manages log files. I would like the log file to be truncated when it exceeds a certain amount of text lines. Does any one have any recommendations on best practices to remove lines from the beginning of a text file.

flag

2 Answers

vote up 2 vote down check

Unless this is for a class assignment, why not use available open-source alternatives? Log4net allows you to roll between a specified number of log files.

link|flag
and even if you really want to do it, I'm sure Log4Net would be a good place to look for ideas. – Greg Ogle Jan 30 at 15:13
vote up 0 vote down

In short: Don't

The long version

When you reach the limit of lines, create a new log file, keep the previous log file, but remove the one before that.

You are now guarenteed to have at leat n lines of log file at any given time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.