Description
Is your feature request related to a problem? Please describe.
It's less of a problem but more of a usecase. In my project a lot of files are created in distinct folders. Every day a new sprint starts and new folders are created collecting todays files. Only serilog logs into the same folder for the app logs only rolling the file name. This makes it harder for datacrawlers and harder to combine multiple app logs per day from diffrent apps as all days are in one folder and need to be filtered.
Describe the solution you'd like
Enable rolling not only for files but also for directories. For example path/to/log_day20250420/my.log -> path/to/log_day20250421/my.log.
Describe alternatives you've considered
Creating a path programmatically for every day would be possible but we configured multiple sinks over muliple json files and putting all this logic into app code isn't very appealing.
Additional context
I'm willing to contribute to this feature / implementing it but would first like to know if it is even wanted/ will be accepted.