I'm still working on a script to clean up my stored media. The problem I'm having currently is that filebot seems to be treating some folders as files and I can't see an option to change that?
Auto-detect movie from context: [/media/shared/vault/Movies/Ghibli]
...
[TEST] Rename [/media/shared/vault/Movies/Ghibli] to [/media/shared/vault/Movies/Ghibli.The.Miyazaki.Temple.2005.720p.BDRip.x264.DTS]
Is there any way to control this? I just want it to leave folders alone
Release Notes wrote:* Do not treat folders with "movie.nfo" as single units like disk folders anymore
The current release should only treat VCD/DVD/BRD folders as single units. Already organized folders that already contain movie.nfo or tvshow.nfo should not receive special handling anymore now.
Auto-detect movie from context: [/media/shared/vault/Movies/DVD Backups]
Auto-detect movie from context: [/media/shared/vault/Movies/Bourne Trilogy]
Auto-detect movie from context: [/media/shared/vault/Movies/Lord Of The Rings]
Auto-detect movie from context: [/media/shared/vault/Movies/Ghibli]
Auto-detect movie from context: [/media/shared/vault/Movies/Juno]
Not sure what might be different in your cases. It's very strange. Looking at the code I don't understand how that could happen...
Judging by the code this would happen if `file.isDirectory()` was to return false for the Ghibli folder. Sometimes remote filesystems are buggy but this would be rather serious. Are your files on a local filesystem? Or on a shared drive? Maybe some odd permission issues?
Its on a USB 3 drive attached to a headless server. Should be formatted to EXT4. The only possible weird thing is that its running against a bind mount rather than the actual structure directly. I wonder if that's causing it to get confused. I'll try hitting the folder direct.
-- Edit: scrap that, its actually just a normal mount:
Oh, actually the only difference I can see is you're running it directly in the Ghibli folder, where My script is running it in the parent folder and renaming the ghibli folder... so:
Thanks for the reply! That does seem to stop it from renaming the folders, but I didn't actually want it to recurse into the sub folders as I'm controlling that via a bash script (some folders shouldn't be processed at all). Is there any way to tell it to just ignore folders altogether?