I downloaded pywin32 (using pip), and want to use the win32api, however, the module doesn't exist. win32 exists and win32com exist, but not win32api. How can I access win32api(specifically I want to be able to access the GetVolumeInformation) function.
Asked
Active
Viewed 1,208 times
1
-
its `win32api` not `win32API` – Joran Beasley May 18 '16 at 15:47
-
sorry that's what I meant – user1549792 May 18 '16 at 15:55
1 Answers
2
Figured it out, win32api is part of win32, so I just changed the import to win32.win32api.

user1549792
- 79
- 9