Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
>>> for driveletter in win32api.GetLogicalDriveStrings().split('\x00'):
... try:
... print win32api.GetVolumeInformation(driveletter), driveletter
... except Exception, e:
... print e, driveletter
...
(21, 'GetVolumeInformation', 'The device is not ready.') A:('WIN98SYSTEM', 304156420, 255, 6, 'FAT32') C:('WINXPSYSTEM', 991825671, 255, 6, 'FAT32') D:('DATA', 305926101, 255, 6, 'FAT32') E:('justin', -271533306, 110, 524293, 'CDFS') F:(3, 'GetVolumeInformation', 'The system cannot find the path specified.')
>>>