如何检测或测试用于 USB 闪存驱动器插入的 unix/linux 开发节点创建

发布于 2024-11-29 10:23:05 字数 367 浏览 2 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

睡美人的小仙女 2024-12-06 10:23:05

您可能想查看标准库中的 fstat()。
这使您可以快速检查文件是否存在,并据此采取行动。
基本上你需要:

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

....

struct stat s;
stat( "/pat/to/node" , &s );
if ( IS_BLK(s.st_mode) ) {
    /* the file exists and is a block device */
}

这不是一个优雅的解决方案,但可以回答你的问题。
该代码可能需要一些调整,因为我没有尝试过,但它应该可以解决问题。

干杯。

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:

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

....

struct stat s;
stat( "/pat/to/node" , &s );
if ( IS_BLK(s.st_mode) ) {
    /* the file exists and is a block device */
}

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.

深海里的那抹蓝 2024-12-06 10:23:05

您可能想使用 udev 规则。

根据某些事件运行外部程序

编写 udev 规则的另一个原因是在设备连接或断开连接时运行特定程序。例如,您可能想要执行一个脚本,以便在连接数码相机时自动从数码相机下载所有照片。

You probably want to use udev rules.

Running external programs upon certain events

Yet another reason for writing udev rules is to run a particular program when a device is connected or disconnected. For example, you might want to execute a script to automatically download all of your photos from your digital camera when it is connected.

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