Hi,
Are you mean created a program to watch your file and update the Qt Program when that file modified ?
If yes, I think you can use " QFileSystemWatcher "
Hope this class will solve your problem.
Best regards,
myta
Hi,
Are you mean created a program to watch your file and update the Qt Program when that file modified ?
If yes, I think you can use " QFileSystemWatcher "
Hope this class will solve your problem.
Best regards,
myta
digimonkey (4th November 2014)
Thank you will check it.
EDIT
It seems that QFileSystemWatcher is used to monotorize files on folders (directories). What I want is monotorize if there are changes inside the file, in this case a text file.
Last edited by digimonkey; 4th November 2014 at 09:00.
From QFileSystemWatcher doc : The fileChanged() signal is emitted when a file has been modified, renamed or removed from disk
digimonkey (4th November 2014)
Bookmarks