Anyone figured out how to do that most efficiently? You can't have two "old" co-existign at the same time? I'm using the rename method but struggle each time Which one is better to rename, the old-old or the new-old?
This should work in PowerShell on Windows or on other systems with a normal shell as long as your downloads folder is called Downloads and you don’t have a folder called old next to Downloads:
mv Downloads old && mkdir Downloads && mv old Downloads
This is assuming there aren’t any special permissions/attributes on Downloads
Some of them seem to have weird things where renaming a directory keeps it still the "downloads" directory - I prefer moving the contents of downloads instead.
When I find something I need in Downloads/old/old/older/old I am happy.