Are There Files Really Different?

Get help for specific problems
Posts: 8
Joined: 15 Jul 2010

grapgen

FreeFileSync finds files that are marked different, but when I compare them in
another application, they are the same. But I synchronize them anyway. After
comparing again FreeFileSync finds them different again.
User avatar
Site Admin
Posts: 7048
Joined: 9 Dec 2007

Zenju

FreeFileSync is right ;) Honestly, you are comparing apples and bananas here:
FreeFileSync has two variants of comparison: 1. file and date 2. content.
Other tools probably use slightly different criteria.

> After comparing again FreeFileSync finds them different again
This is probably because the date and/or filesize have changed during or after
synchronization with FFS. Perhaps you are copying to some network share that
automatically manipulates new files as they arrive.
Posts: 8
Joined: 15 Jul 2010

grapgen

Thanks for the fast reply. I am doing a comparison by content. One of the
folders is on an internal drive and the other is on a USB drive. This unusual
behavior does not happen with every file, just a few. I don't think there is a
problem with FreeFileSync because I have seen this with other comparison
utilities. I am asking about it because of the expertise here.
User avatar
Site Admin
Posts: 7048
Joined: 9 Dec 2007

Zenju

> comparison by content
In this case I suggest having a deeper look and see what changes are there
between these files. Pretty much sounds like either a damaged USB stick or
internal drive. Open both files that are detected as different after
comparison with a hex editor and see what the difference is exactly. If its
arbitrarily changed raw bytes you'll have the answer.
Posts: 8
Joined: 15 Jul 2010

grapgen

It's identical in hex editor.
User avatar
Site Admin
Posts: 7048
Joined: 9 Dec 2007

Zenju

>It's identical in hex editor.
Then FFS shouldn't see them as itdentical neither. Do you have steps how to
reproduce this issue?
Posts: 9
Joined: 29 Dec 2009

aiadi

I vaguely remember something similar happening to me with files that contain
weird characters in their file name. Could this be the problem?
User avatar
Site Admin
Posts: 7048
Joined: 9 Dec 2007

Zenju

> weird characters in their file name
Quite unlikely. The means to open a file is via the CreateFile C-API command
which uses wide char Unicode characters. Next bytes are read via the
"ReadFile" function. Assuming that these Windows functions work correctly
there is not much that could go wrong. (I.e. go wrong without notice)