Page 1 of 1
Filebot hasn't been hardlinking
Posted: 20 Apr 2025, 03:25
by koboldtime
Hello, I've been using filebot gui to move and rename files, unfortnally I just realized it hasn't been hardlinking them despite the gui indicating it is hardlinking. I'm moving things within the same drive (E:/dump to E:/media/...) so I'm really not sure what is wrong. Anyone have any idea what I did wrong?
Re: Filebot hasn't been hardlinking
Posted: 20 Apr 2025, 11:11
by rednoah
koboldtime wrote: ↑20 Apr 2025, 03:25
I just realized it hasn't been hardlinking them despite the gui indicating it is hardlinking

How did you realize this? How did you confirm that the hardlink operation failed or otherwise didn't do what you wanted it to do?

If you select
Hardlink then FileBot will use a hardlink operation and that operation will either succeed or fail, and there is no in between since the operation is atomic. If you did not get an error, then the files were almost certainly hardlinked successfully.

You can use the
{f.linkCount} and the
{f.key} binding for debugging purposes to print the link count and the file key for each file path, so that you can see which files have been hardlinked. If the file key is the same for two files, then those two files are in fact the same file at different file paths:
Shell: Select all
filebot -mediainfo -r "E:/dump" "E:/media" --format "{f.linkCount} {f.key} {f}"
Re: Filebot hasn't been hardlinking
Posted: 13 Jun 2025, 14:57
by rednoah

Did you figure it out? What were your findings?