https://pastebin.com/7fshKUFU
Hello
I just bought Filebot and am trying to match my needs. English is not my mother tongue so i hope i can explain it correctly.
So my questions are:
1.)
I'm trying to set up filebot that it scans a folder and makes symlinks in another folder with correct filenames.
So Kodi can scan that folder and scrape the information.
And the Files it cannot find should end up with a symlink with their filename in the unsorted directory so i can name and match them personally.
It works quite good but sometimes it takes the foldername as movie name and sometimes it completely ignores a file so it does not show up anywhere...
The command i am using right now is:
https://pastebin.com/L44GsbBb
And the Log i get
https://pastebin.com/1i1i6hp5
Also no movie ever lands in the unsorted folder. What do i do wrong?
2.) Is there a way filebot deletes obsolete symlinks if the real file has been deleted?
I hope this is understandable and Thank you in Advanceand greetings from Austria.
Gatto
File named from directoryname not filename
Re: File named from directoryname not filename

Console Output: Select all
[SYMLINK] from [D:\DOWNLOADS\Applejuice\finito\84 m².mkv] to [D:\2watch\Movies\Finito (2021) {tmdb=785588}\Finito (2021).mkv]

Console Output: Select all
Processing 1 unsorted file
[SYMLINK] from [D:\DOWNLOADS\Applejuice\finito\Serien\Kaiju No. 8 Mission Recon - 01 - Complete Movie.mkv] to [D:\2watch\Unsorted\Kaiju No. 8 Mission Recon - 01 - Complete Movie.mkv]

e.g. find broken symlinks:
powershell: Select all
Get-ChildItem -Path "C:\MyFolder" -Recurse -Force | Where-Object {
$_.LinkType -eq 'SymbolicLink' -and -not (Test-Path $_.Target)
}
powershell: Select all
Get-ChildItem -Path "C:\MyFolder" -Recurse -Force | Where-Object {
$_.LinkType -eq 'SymbolicLink' -and -not (Test-Path $_.Target)
} | Remove-Item -Force

Console Output: Select all
Invalid usage: --def link is not used and has no effect

Shell: Select all
filebot -script fn:properties --def net.filebot.symlink=absolute
** since you are processing files within Drive D (same file system) you may prefer to use hardlinks (default behaviour as per --action duplicate)

Console Output: Select all
Input: D:\DOWNLOADS\Applejuice\finito\84 m².mkv
└─ xattr metadata: Finito (2021)
Re: File named from directoryname not filename
Hallo and thanks for the quick answer!!!
I changed everything you wrote and started from scratch... seems to work perfectly.
I hope it stays that way!!!
Thanks a lot for your time and effort!!!
I changed everything you wrote and started from scratch... seems to work perfectly.
I hope it stays that way!!!
Thanks a lot for your time and effort!!!