strace для blockdev
говорит мне, что вы можете использовать:
#include <iostream>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/fs.h>
int main()
{
unsigned long long size;
int fd = open("/dev/sdx", O_RDONLY);
ioctl(fd, BLKGETSIZE64, &size);
std::cout << size << std::endl;
std::cout << (size>>20) << std::endl; // MiBytes
}
(заменить sdx именем узла устройства)
Примечание предпочитают использовать uint64_t
, если ваш компилятор уже поддерживает это (включая <cstdint>
)