Very mysterious indeed. I can only assume it's a SMB file system driver issue. I would guess that the "read" in the SMB log doesn't necessarily indicate a complete file read, but perhaps only a partial read that Windows does for some reason. But I wouldn't know how to further debug Windows internals.gohakn wrote: ↑14 May 2023, 10:27 Timestamp 1: ( 3 rows) was a move command inside powershell -> same result, about 24 seconds.
Timestamp 2: ( 2 rows) was instantly moving the file back to it`s origin place via Windows STRG-X -> STRG-V
Timestamp 3: ( 1 row) was a 2nd move inside powershell which is carried out in a second...
![]()
Unfortunately, I'm fairly sure that the issue cannot be solved within FileBot, especially since the issue fixes itself entirely on a new pristine Windows install.
We could confirm this via Groovy Pad and writing code that does nothing but a rename operation. If this takes a long time, then there's nothing we could possibly do differently as far as FileBot code is concerned:
Code: Select all
def a = /X:\test\a.mkv/ as File
def b = /X:\test\b.mkv/ as File
def t = System.currentTimeMillis()
java.nio.file.Files.move(a.toPath(), b.toPath())
println(System.currentTimeMillis() - t)