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.
|
|
|
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
