Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

More or less what it says on the tin: is there an (easy) way in Python to list all the currently in-use drive letters in a windows system?

(My google-fu seems to have let me down on this one.)

Related:

share|improve this question

5 Answers

up vote 23 down vote accepted
import win32api

drives = win32api.GetLogicalDriveStrings()
drives = drives.split('\000')[:-1]
print drives

Adapted from: http://www.faqts.com/knowledge_base/view.phtml/aid/4670

share|improve this answer
FANTASTIC. Worked perfect. – Electrons_Ahoy May 12 '09 at 3:14
I just tried it in 2.6, and got an extra empty string at the end. Still a good answer. – Mark Ransom Jun 5 '09 at 19:47
@Mark: edit to fix – Claudiu Mar 27 '10 at 3:54
1  
Just to make sure you don't discard any non-empty strings, consider using drives = [drivestr in drives.split('\000') if drivestr] – Wesley Mar 27 '10 at 4:11

Without using any external libraries, if that matters to you:

import string
from ctypes import windll

def get_drives():
    drives = []
    bitmask = windll.kernel32.GetLogicalDrives()
    for letter in string.uppercase:
        if bitmask & 1:
            drives.append(letter)
        bitmask >>= 1

    return drives

if __name__ == '__main__':
    print get_drives()     # On my PC, this prints ['A', 'C', 'D', 'F', 'H']
share|improve this answer
Any reason not to use string.lowercase or string.ascii_lowercase instead of string.letters[len(string.letters)/2:] ? – John Fouhy May 6 '09 at 2:02
@John: No reason - thanks for the suggestion, now changed to string.uppercase (because for drive letters I prefer caps, don't know why 8-) – RichieHindle May 6 '09 at 8:03
1  
[c+':\\' for c in string.lowercase if os.path.isdir(c+':\\')] – Berry Tsakala Jun 5 '09 at 18:45
1  
Berry: that will pop up nasty Windows dialogs if you have removable media drives without media in them... – Ted Mielczarek Jun 30 '10 at 18:12

The Microsoft Script Repository includes this recipe which might help. I don't have a windows machine to test it, though, so I'm not sure if you want "Name", "System Name", "Volume Name", or maybe something else.

share|improve this answer
1  
Thank you for link to Microsoft Script Repository. – Konstantin Tenzin May 15 '09 at 9:18
I've always felt that it is an excellent resource for Windows progarmmers that is not widely-enough known :-) – John Fouhy May 17 '09 at 22:53
Another +1 for the link to the Microsoft Script Repository, I'd never heard of it before. – Mark Ransom Jun 5 '09 at 19:54

Those look like better answers. Here's my hackish cruft

import os, re
re.findall(r"[A-Z]+:.*$",os.popen("mountvol /").read(),re.MULTILINE)
share|improve this answer

Ted Mielczarek, you get nasty popups for the solution:? [c+':\\' for c in string.lowercase if os.path.isdir(c+':\\')] – Berry Tsakala

I am on Windows XP SP3 with five removable media drives listed with no media and did not get any popups for missing media when using Berry's recipe. However I also did not get those drive letters listed in Berry's list comprehension. The removable drive letters showed in Windows Explorer however.

On TokenMacGuy's solution when I run "mountvol /" I do get my removable media drive letters listed in the output but I do NOT get mapped AND I don't get subst'd drives either.

I tried RichieHindle's recipe. To my surprise is listed all my used drive letters, for removable media, subst'd drives, mapped and even a hardsymbol's drive letter to a disconnected "virual" network drive. The virtual network drive is a "soft/hardware" driver to simulate a CD/DVD drive so you don't have to put a dvd into a drive to run the software on a dvd disc.

Thanks Richie.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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