redman
redman

Reputation: 2165

Get each partition information with Python

How do you get all partitions and their info (total space, free space etc.) with Python on Windows? Thi example shows how to get free space, but you must know partitions/folders... I would like to get info for all partitions (maybe except CD-ROMs).

Upvotes: 1

Views: 3680

Answers (1)

mzjn
mzjn

Reputation: 50947

Check out the WMI module. There are many recipes in the WMI cookbook, including

  • Find Drive Types
  • Show the percentage free space for each fixed disk
  • Show disk partitions

Upvotes: 1

Related Questions