QSocketNotifier - 如何使用它来监视文件? - linux
我希望我的 C++ 应用程序监视名为“aaa”的文件中的更改。我想通过 QSocketNotifier 来完成。我从文档中不明白如何做到这一点。你能给我寄一份样品吗?
10!
I want my c++ application to watch for changes in a file called "aaa". I want to do it by QSocketNotifier. I didn't understand from the documentation how to do it. Can you please send me a sample?
10!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用QFileSystemWatcher。它为您执行所有 inotify hackery。
Use QFileSystemWatcher. It performs all the inotify hackery for you.
QSocketNotifier 类适用于套接字,而不是文件。由于它显然在幕后使用 select(2) ,您可能< /em> 向它传递一个由 inotify_init() 并欺骗它以这种方式监视文件更改。但这是非常值得怀疑的。
The QSocketNotifier class works with sockets, not files. Since it apparently uses select(2) under the hood, you might get away with passing it a file descriptor returned by inotify_init() and trick it into monitoring file changes that way. That's highly doubtful, though.