Hey guys,

I've developped a class using QFileInfo to monitor a very large amount of files / folders.

I didn't use QFileSystemWatcher because of its "file descriptors" limitation.

Basically I have a callback that checks every folders.

It's working pretty good.
I detect File / folder modification, delete, create.

My only issue is when a file gets renamed.
Because the QFileInfo::lastModified() is not updated.

Has anyone got a multi-platform way of detecting file renaming ?

Thanks.