Updating QFileSystemModel when inserting a flash card (Windows)
-
I am using QFileSystemModel together with QTreeView. I want QTreeView to update its state and show the flash card in the tree when I insert a flash drive into the computer.
Documentation for QFileSystemModel::setRootPath says:
Sets the directory that is being watched by the model to newPath by installing a file system watcher on it. Any changes to files and directories within this directory will be reflected in the model.
What specific path should be set in setRootPath to track changes when a flash drive is inserted? Here is my code
#include <QApplication> #include <QTreeView> #include <QFileSystemModel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QFileSystemModel *model = new QFileSystemModel; model->setRootPath("???"); model->setFilter(QDir::NoDotAndDotDot | QDir::AllDirs | QDir::NoSymLinks); QTreeView *treeView = new QTreeView; treeView->setModel(model); treeView->setColumnWidth(0, 250); treeView->setWindowTitle("QFileSystemModel Example"); treeView->resize(600, 400); treeView->show(); return app.exec(); }
-
@Jo-Jo said in Updating QFileSystemModel when inserting a flash card (Windows):
What specific path should be set in setRootPath to track changes when a flash drive is inserted?
If anything works at all it would depend on your OS and where the drive gets mounted, about which we know nothing.
If you can find something which works for you on your OS that is great. But it would not surprise me if you have trouble seeing this situation. Ultimately if I wanted to check behaviour for
QFileSystem
notifications I would look at the Qt source for your platform (as you did for yourQFileSystemModel
question), as the implementation varies and relies on whatever the underlying OS call does or does not support. -
@JonB said in Updating QFileSystemModel when inserting a flash card (Windows):
If anything works at all it would depend on your OS and where the drive gets mounted, about which we know nothing.
I am using Windows 11. I'm trying to find information in the source code but so far without success. As i understand, it uses QWindowsFileSystemWatcherEngine and i can`t found this class in sources
-
@Jo-Jo
I am a Linux user rather than Windows. I believe the code will be in some Windows-specific Qt source file. I believe the base system call used will be something likeFindFirstChangeNotification()
, per e.g. https://learn.microsoft.com/en-us/windows/win32/fileio/obtaining-directory-change-notifications. You might be able to find that in source code? I do not know whether Windows has different calls for top-level removable media,Hmm, it might get more complicated. There is also a
WM_DEVICECHANGE
Windows message. See maybe https://learn.microsoft.com/en-us/windows/win32/devio/detecting-media-insertion-or-removal. And then there isSHChangeNotifyRegister
....I think
class QWindowsFileSystemWatcherEngine : public QFileSystemWatcherEngine
might be in in a header file, namedqfilesystemwatcher_win_p.h
, somewhere?You may have to do some Googling --- good luck!
-
@JonB said in Updating QFileSystemModel when inserting a flash card (Windows):
WM_DEVICECHANGE
This only works when inserting and removing the flash drive, but this is not enough. After inserting the flash drive, it is not immediately available in the file system, some time must pass. Also, this message does not come when the user presses Eject.
You may have to do some Googling --- good luck!
Thank you!:)
-
@Jo-Jo said in Updating QFileSystemModel when inserting a flash card (Windows):
This only works when inserting and removing the flash drive, but this is not enough. After inserting the flash drive, it is not immediately available in the file system, some time must pass.
Indeed! You wish to look at things from the file system level which is separate from this more "physical" level, I was aware of this.
I hate to say this, but you might see whether ChatGPT has an answer for your case!
-
@JonB said in Updating QFileSystemModel when inserting a flash card (Windows):
Indeed! You wish to look at things from the file system level which is separate from this more "physical" level, I was aware of this.
I hate to say this, but you might see whether ChatGPT has an answer for your case!
I'll try, thank you!
-
I found out that flash drive detection is almost independent of setRootPath. If you set any correct path in setRootPath, then when you insert a flash drive, QTreeView will display it.
On the other hand, the behavior of setRootPath still remains unclear. If, for example, I set setRootPath like this:
model->setRootPath("C:\Users\Username\Desktop\folder");
Even though C:\Users\Username\Desktop\folder was set as the path to be monitored, QFileSystemModel monitors changes in other directories as well. For example, if you create a file in C:, QTreeView will display this file despite the fact that we are monitoring C:\Users\Username\Desktop\folder and not C:\
What is the reason for this behavior, maybe someone knows?