What would be the best way to move all movies to parent directory?

Curious how I could go about moving all of my movies/subs out of their individual directories and into their parent folders.

Something like rclone move remote:Movies/*/ remote:Movies/

id just do that using file size in the cloud not rely on rclone for that as subs are smaller than video thats easy to tell what is what even when encrypted

That would work.

You could also try rclone mount then use mv and friends. Note that you can’t mv a directory at the moment though only a file.

I have about 4800 folders, I should have done this long ago

Edit: Here’s the command that seems to be working for me: find . -mindepth 2 -type f -print -exec mv {} . ;