有没有办法在Python中获取连接存储设备的列表,如相机,SD卡和外置硬盘?
答案 0 :(得分:5)
以下内容适用于Linux和Windows。 这将列出所有驱动器,而不仅仅是外部驱动器!
import subprocess
import sys
#on windows
#Get the fixed drives
#wmic logicaldisk get name,description
if 'win' in sys.platform:
drivelist = subprocess.Popen('wmic logicaldisk get name,description', shell=True, stdout=subprocess.PIPE)
drivelisto, err = drivelist.communicate()
driveLines = drivelisto.split('\n')
elif 'linux' in sys.platform:
listdrives=subprocess.Popen('mount', shell=True, stdout=subprocess.PIPE)
listdrivesout, err=listdrives.communicate()
for idx,drive in enumerate(filter(None,listdrivesout)):
listdrivesout[idx]=drive.split()[2]
# guess how it should be on mac os, similar to linux , the mount command should
# work, but I can't verify it...
elif 'macosx' ...
do the rest....
Linux的上述方法非常粗糙,如果你想要更精细的调整,会返回sys
和procfs
之类的驱动器,查看python-dbus
查询。 / p>