Quick question. I've enabled extended attributes via filebot -script fn:properties --def net.filebot.xattr.store=.xattr and am wondering what would be the best way to validate if extended attributes actually exist ?
I was initially thinking something like find <path to tv shows> -mindepth 3 -maxdepth 3 -type d '!' -exec test -d "{}/.xattr" ';' -print but that is somewhat flawed as it'll only detect if the top level .xattr does not exists at the show level and not if individual net.filebot.filename or net.filebot.metadata exist for each and every episode.
Maybe something exists already as part of one of the groovy scripts but so far I've not been able to find something that would accomplish this. Goal here is to validate (weekly) that I'm not missing anything. Maybe something with the --action prune action could help? Thanks.
How to check if Extended Attributes exist for local assets
Re: How to check if Extended Attributes exist for local assets

e.g. find video files with Episode type xattr metadata:
Shell: Select all
filebot -find /input --filter "f.video && episode"
e.g. find video files without Episode type xattr metadata:
Shell: Select all
filebot -find /input --filter "f.video && none{ episode }"

Re: How to check if Extended Attributes exist for local assets
Very good. Thank you again. This worked perfectly.