Rclone copy sub directories

Hey,

Trying to do something like this

rclone copy secret:plex/TVSeries/30 Rock/ /mnt/user/TVSeries/30 Rock/

Is there a way to specify a sub directory within an encrypted folder?

What you wrote looks correct, except it is probably missing some quotes as the dirs you are trying to copy have spaces in.

rclone copy "secret:plex/TVSeries/30 Rock/" "/mnt/user/TVSeries/30 Rock/"

You can use rclone lsd secret: to see the directories and use that to explore, so then rclone lsd plex:/TVSeries

Ah the quotes fixed it. Thanks!