My app is running continuously and I'd like to have a log folder created during runtime for each day. I would then place the logs of the day in the appropriate folder. It would look like this:
logs/
07-11-2016/file1.log
07-12-2016/file1.log
I didn't find a signal that could be triggered by an instance of QDate
or something else when the date changes. It would seem to me to be the most convenient way.
The idea would be to have some sort of QTimer
triggering a signal each time the date changes (day by day).