如何在python中获取驱动器的名称

时间:2011-11-29 23:31:28

标签: python windows ctypes

我有一个有效的驱动器号列表,我想向最终用户提供一个选择。我想向他们展示驱动器的名称。这里有一些代码可以显示驱动器F:\的名称:

import ctypes

kernel32 = ctypes.windll.kernel32
buf = ctypes.create_unicode_buffer(1024)

kernel32.GetVolumeNameForVolumeMountPointW(
    ctypes.c_wchar_p("F:\\"),
    buf,
    ctypes.sizeof(buf)
)

print buf.value

但是,这会输出\\?\Volume{a8b6b3df-1a63-11e1-9f6f-0007e9ebdfbf}\。如何获取Windows在资源管理器中显示的字符串(例如,KINGSTON,对于我拥有的某个闪存驱动器)?


编辑:

仍然无效:

volumeNameBuffer = ctypes.create_unicode_buffer(1024)
fileSystemNameBuffer = ctypes.create_unicode_buffer(1024)

kernel32.GetVolumeInformationW(
    ctypes.c_wchar_p("C:\\"),
    volumeNameBuffer,
    ctypes.sizeof(volumeNameBuffer),
    fileSystemNameBuffer,
    ctypes.sizeof(fileSystemNameBuffer)
)

这给了我这个错误:

WindowsError: exception: access violation reading 0x3A353FA0

6 个答案:

答案 0 :(得分:6)

请尝试使用GetVolumeInformation功能。它直接返回卷标。

答案 1 :(得分:5)

为什么不使用win32api.GetVolumeInformation?

import win32api
win32api.GetVolumeInformation("C:\\")

输出

('WINDOWS', 1992293715, 255, 65470719, 'NTFS')

答案 2 :(得分:3)

使用上面的片段,我填写了缺少的(可选的,null)参数作为快速帮助:

import ctypes
kernel32 = ctypes.windll.kernel32
volumeNameBuffer = ctypes.create_unicode_buffer(1024)
fileSystemNameBuffer = ctypes.create_unicode_buffer(1024)
serial_number = None
max_component_length = None
file_system_flags = None

rc = kernel32.GetVolumeInformationW(
    ctypes.c_wchar_p("F:\\"),
    volumeNameBuffer,
    ctypes.sizeof(volumeNameBuffer),
    serial_number,
    max_component_length,
    file_system_flags,
    fileSystemNameBuffer,
    ctypes.sizeof(fileSystemNameBuffer)
)

print volumeNameBuffer.value
print fileSystemNameBuffer.value

这应该是可以复制和粘贴的。

答案 3 :(得分:1)

  • 返回给定driveLabel的driveLetter
  • 如果未找到driveLabel,则返回“未找到”

def findDriveByDriveLabel(driveLabel):

drvArr = ['c:', 'd:', 'e:', 'f:', 'g:', 'h:', 'i:', 'j:', 'k:', 'l:']
for dl in drvArr:
    try:
        if (os.path.isdir(dl) != 0):
            val = subprocess.check_output(["cmd", "/c vol " + dl])
            if (driveLabel in str(val)):
                return dl + "/"
    except:
        print("Error: findDriveByDriveLabel(): exception")

return "notfound"

答案 4 :(得分:1)

如果您觉得有用,您可以在下面的代码中获取您的驱动器名称

import win32api
import win32con
import win32file

def get_removable_drives():
    drives = [i for i in win32api.GetLogicalDriveStrings().split('\x00') if i]
    #print(drives)
    rdrives = [d for d in drives if win32file.GetDriveType(d) == win32con.DRIVE_REMOVABLE]
    return rdrives

drive_list = get_removable_drives()

for i in drive_list:
    print(win32api.GetVolumeInformation(i)[0]+'('+i+')')

答案 5 :(得分:0)

您可以执行Windows Shell cmd并解析输出。

import subprocess 
def getDriveName(driveletter):
    return subprocess.check_output(["cmd","/c vol "+driveletter]).split("\r\n")[0].split(" ").pop()

print getDriveName("d:")

它在Python 2.7中有效