[Solved]How to associate the encrypted files to the decrypted ones?

According to the checksums, a few of my files encrypted with cryptomator are corrupted and I would like to know what they contain. Is there any way to associate the encrypted files to the decrypted ones? Thank you.

Hi. No there is no listing etc.
You can check for exact timestamps as a “guess”.
Or if you are familiar with python, you can use this script

1 Like

Thanks! Python scripting is uncharted territory for me, but the timestamps did the trick.

For other (linux) users:

find <path> -newerct "<modification time, minus one second>" -not -newerct "<modification time, plus one second>"

Edit: I forgot, in “yyyy-mm-dd hh:mm:ss” format.