Failed on reading the "System Volume Information" folder even when excluding it

I think the problem with that command is that --filter "+ FILE_NAME" means look for a file called FILE_NAME in any folder so rclone can’t narrow down the folders it has to search. Perhaps this will do what you want? --filter "+ FOLDER_NAME/**/FILE_NAME" --filter "+ FOLDER_NAME/FILE_NAME"

This works for me when I try it

rclone.exe ls C:\ --filter "- Recovery/**" --filter "- System Volume Information/**" --filter "- PerfLogs/**" --filter "- $Recycle.Bin" --filter "- Config.Msi/**" --filter "+ VERSION" --filter "+ Go/**" --filter "- **"

Can you try instead of doing a copy do an ls with the filters - you should be able to get it to work.

That is a known issue: https://github.com/ncw/rclone/issues/1754 for which I’m awaiting a fix in the go standard library.

2 Likes