Hello,
Which class can we use to check the disk space?
Thanks!
Printable View
Hello,
Which class can we use to check the disk space?
Thanks!
you mean the psychical disc or just the partition. I don;t know about the physical disc but for a partition or any adress on your system just use QFileInfo.
QFileInfo sizeInfo("C:/");
int size = sizeInfo.size();
something like this (might made some typo's or something)