How to take automatically backup of a log file(.txt) when it's size reached a threshold level, say 5MB. The backup file name should be like (log_file_name)_(system_date) and original log file should be cleaned(0 KB).
Please help. Thanks in advance.
|
|
Check your log file size using lenght().Then check if its bigger then 5mb call extendLogFile() func. This is c# code u can easly convert to java Size check:
Copy old log file in archive directory and create new log file:
|
|||
|
|