To resolve this you need to force a mod time update on the folders and files.
- Code: Select all
find /path/to/music -type f -exec touch "{}" \;
find /path/to/music -type d -exec touch "{}" \;
Could possibly just run
- Code: Select all
find /path/to/music -exec touch "{}" \;
For just hitting images you could use something like this.
- Code: Select all
find /path/to/music -type f -iname '*[jp][pn][g]' -exec touch "{}" \;
This is a little tedious because if like me use use Rsync to backup your collection using Rsync's archive option -a, then it will have to update the mod time on the files. Having said that now it's running from my VPS I will probably only have to do this once.
Note to developers: I presume you are trying to make to scanning efficient, but perhaps include an option to "force" a scan and ignore previously excluded folders, or resolve the bug some other way you deem appropriate...
Thanks
James
