hard-drive

Get hard disk size in Python

Get hard disk size in Python Question: I am trying to get the hard drive size and free space using Python (I am using Python 2.7 with macOS). I am trying with os.statvfs(‘/’), especially with the following code. Is it correct what I am doing? Which definition of the variable giga shall I use? import …

Total answers: 7

Detect external hard drive after letter changed in Python

Detect external hard drive after letter changed in Python Question: I am writing a Python program to scan and keep track of files on several external hard drives. It keeps the file path as a string in a local file. The problem is that sometimes when I plug the external HDD into different computer, the …

Total answers: 3

How to get hard disk serial number using Python

How to get hard disk serial number using Python Question: How can I get the serial number of a hard disk drive using Python on Linux? I would like to use a Python module to do that instead of running an external program such as hdparm. Perhaps using the fcntl module? Asked By: Forge || …

Total answers: 5