python 获取windows系统上所有磁盘

Python评论1,117阅读模式

可以使用Python的psutil模块来获取Windows系统上所有磁盘的信息。

示例代码:文章源自爱尚资源教程网-https://www.23jcw.net/6441.html

import psutil

def get_drives():
    drives = []
    for partition in psutil.disk_partitions():
        if 'cdrom' not in partition.opts and partition.fstype != '':
            drives.append(partition.device)
    return drives

drives = get_drives()
print(drives)

这段代码会遍历所有磁盘分区,如果分区类型不为空且不是光驱,则将其设备名称(如C:、D:等)保存到drives列表中。最后输出所有磁盘的设备名称。文章源自爱尚资源教程网-https://www.23jcw.net/6441.html 文章源自爱尚资源教程网-https://www.23jcw.net/6441.html

相关文章
版权声明:文章图片资源来源于网络,如有侵权,请留言删除!!!
  • 温馨提示:如遇到资源下载不了,或者文章没有解决你的问题的,可以联系我们帮你处理!!!
  • 转载请务必保留本文链接:https://www.23jcw.net/6441.html

发表评论