Ok, so in 2.42, open recent has been allowed to remember more files instead of just one. However, mine is already starting to get cluttered, and on top of that it does not remove from the list any blend files that I delete.
So is there any way to limit or at the very least reduce the number of files that blender links to in this menu?
what OS? linux? You are probably already calling Blender from a shell script, so just add one line after Blender runs: mv .Blog .Blog.backup && head -nXX .Blog.backup > .Blog
Which will always keep it trimmed to the last XX files opened, but keep a backup of the full list. For that session anyway.
Heilos gives away a freeware version of head, for Windows boxes… the syntax would be basically the same for a cmd.exe batch file…
move .Blog .Blog.backup
head -XX .Blog.backup > .Blog
I only suggest you make it automated because it’s just going to keep growing… I’m sure you could modify a startup Python associated with Blender or even find and change the variable that decides how many lines to keep… still, this is probably the fastest.