I what to know how to get a list of working drives in python(Windows)
import win32api
drives = win32api.GetLogicalDriveStrings()
drives = drives.split('\000')[:-1]
print drives
works but gets a list of all the posable drives i what a list of all the currently plugged in/working drives