vote up 1 vote down star

Possible Duplicate:
Is there a way to list all the available drive letters in python?

What's the way to retrieve currently mounted drive list in Windows incl. Thumb drives, and mapped networks.

i currently do

    drives=[]
    for c in string.lowercase:
        if os.path.isdir(c+':'):
        	drives.append(c+':')

which looks ugly, but is completely KISS proof :)

flag

55% accept rate
Duplicate: stackoverflow.com/questions/827371/… – S.Lott Jun 5 at 17:02

closed as exact duplicate by S.Lott, nosklo, Ayman Hourieh, Nadia Alramli, J.F. Sebastian Jun 5 at 22:51

1 Answer

vote up 1 vote down check
win32api.GetLogicalDriveStrings().split("\x00")
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.