如何使用Python根据设备名称获取卷标
我正在制作类似于 Linux 的已安装设备列表之类的东西。
在程序启动时,我解析 /etc/mtab 以查找现有安装。为了获得有关添加到系统的新挂载的通知,我正在使用 DBus,并且在消息中我得到了volume.label 属性。有没有办法根据 /dev/sda1 或 /dev/sdd 等设备名称获取卷标?
编辑: 一段时间后,我设法找到了解决这个问题的方法。 Python gio 模块有一个名为 VolumeMonitor 的类。因此,获取具有漂亮名称和正确图标的列表非常简单,只需迭代 get_mounts()
方法的结果即可:
for mount in volume_monitor.get_mounts():
print mount.get_name(), mount.get_icon()
您还可以获取驱动器和卷的列表。您还可以连接一些信号并适当更新列表。不过有一点要注意。卷是第一个出现在列表中的,并且第一个触发自己的事件,挂载随后出现。因此,如果您希望维护活动挂载列表,请监听 mount-added
和 mount-removed
信号,而不是 volume-added
和 <代码>卷已删除。
I am making something like a list of mounted devices for Linux.
On program startup I parse /etc/mtab for existing mounts. To get notified about new mounts added to the system am using DBus and in message I get there is volume.label property. Is there any way to get volume label based on device name like /dev/sda1 or /dev/sdd?
Edit:
After some time I managed to find a solution to this problem. Python gio
module has a class named VolumeMonitor. So getting the list with nice names and correct icons is simple as iterating through result of get_mounts()
method:
for mount in volume_monitor.get_mounts():
print mount.get_name(), mount.get_icon()
You can also get a list of drives and volumes. You can also connect some signals and update list appropriately. One note though. Volume is the first one to appear in the list and first to trigger its own events, mounts come later. So if you wish to maintain a list of active mounts, listen to mount-added
and mount-removed
signals instead of volume-added
and volume-removed
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
blkid
来代替使用e2label
命令,然后解析其输出:Instead of using the
e2label
command, you can useblkid
and then parse its output:e2label
命令会在使用时告诉您卷标,如下所示:注意:这仅适用于 ext2、ext3 或 ext4 文件系统。
在 Python 中,您可以使用 os.system 或 Popen 调用命令
The
e2label
command will tell you the volume label when used like this:Note: this only works for ext2, ext3, or ext4 filesystems.
From Python, you can invoke the command with
os.system
orPopen