Dedicated server automatic DemoRec

Dear Community,

I have some problems with dedicated server automatic DemoRec feature, mostly with its configuration. I set
bHandleDedicatedServerReplays = true;
in my GameMode constructor (as far as I understand, I could also configure it from .ini file). Everything works superb, the dedicated server game gets recorded with checkpoints but when I make another dedicated server game after that, all the data is overwritten (if the map is the same). I can’t find a way to configure the demo record name. Previously, I had a system in place that called console command DemoRec with specific unique name at start but I believe it is better to go for this “easy to use” automatic handling of replays. I though the handling of filenames would be similiar to log files (so older filenames get renames before being deleted) but it doesn’t work like that with DemoRec.

Does anyone know how to change the default folder of DemoRec feature? I tried adding option ?DemoRec= and -DemoRec= to map options but it did not work. Any other suggestions maybe?

Best regards,

For now, the workaround solution is to call DemoRec on BeginPlay in GameMode with an appropriate name, like:
DemoRec myuniquerecordingname

Make sure to not use dots for the name as this is not accepted.