QSocketNotifier - 如何使用它来监视文件? - linux

发布于 2024-09-29 22:27:25 字数 103 浏览 6 评论 0原文

我希望我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

聊慰 2024-10-06 22:27:25

使用QFileSystemWatcher。它为您执行所有 inotify hackery。

Use QFileSystemWatcher. It performs all the inotify hackery for you.

握住你手 2024-10-06 22:27:25

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文