如何检测或测试用于 USB 闪存驱动器插入的 unix/linux 开发节点创建
我在 Linux 系统上用 C 语言编码。我想插入一个 USB 闪存驱动器,让 udev 创建开发节点(例如 /dev/sdc 和 /dev/sdc1),并仅在 /dev/sdc 出现时执行操作。我一直在做的是将其视为我的 C 应用程序中的等待循环,等待 udev 守护进程创建开发节点。如下所示:
if( /* /dev/sdc exists */)
{
do_something();
}
else
{
wait();
}
我的第一个问题是,什么 C 库函数可以在我的 if() 测试中返回“/dev/sdc 存在”的值。我的第二个问题是,我是否只是错误地处理了这个问题?我应该使用 udev 监视器结构来直接从 udev 检测到这一点吗?
I'm coding in C on a linux system. I want to insert a USB flash drive, let udev create the dev nodes (at /dev/sdc and /dev/sdc1, for example), and take an action only when /dev/sdc appears. What I've been doing is thinking of this as a wait loop in my C application, waiting for a dev node to be created by the udev daemon. Something like the following:
if( /* /dev/sdc exists */)
{
do_something();
}
else
{
wait();
}
My first problem is, what C library function can go in my if() test to return a value for "/dev/sdc exists." My second problem is, am I simply approaching this wrongly? Should I be using a udev monitor structure to detect this straight from udev?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想查看标准库中的 fstat()。
这使您可以快速检查文件是否存在,并据此采取行动。
基本上你需要:
这不是一个优雅的解决方案,但可以回答你的问题。
该代码可能需要一些调整,因为我没有尝试过,但它应该可以解决问题。
干杯。
You may want to take a look at fstat() from the standard library.
This allows you to do a quick-and-dirty check on the presence/absence of the file and act upon that.
basically you need to:
This is not an elegant solution but answers your question.
The code might need some tuning because I didn't try it but it should do the trick.
Cheers.
您可能想使用 udev 规则。
根据某些事件运行外部程序
You probably want to use udev rules.
Running external programs upon certain events