I am using Log4Net for logging in an application I've written. For writing to the log file, I use a RollingFileAppender with 5 backups and a max filesize of 250KB.
What I want to do is offer the user an opportunity to send me the log if a crash occurs. I want this presented to the user as a possibility, if they start the program again.
The trouble is, though, the log file will usually perform a rollover when the program starts, due to apparently not rolling over during the program execution.
What I want is therefore the filename of the log file that was just rolled over, that is the previous log file.
Is there an easy way to find that?