1. 程式人生 > >Linux下在C語言中獲取硬碟大小

Linux下在C語言中獲取硬碟大小

        由於系統中沒有現成的程式碼可以直接獲取某個硬碟的大小,此時可以藉助popen,sscanf,fdisk命令共同完成硬碟大小的獲取。

        工件原理如下,在linux中執行fdisk -l命令,獲取硬碟的詳細資訊,然後在C程式中通過popen將資訊獲取,然後用sscanf將相關資訊進行處理,得到硬碟的大小。程式碼如下:

int get_system_tf_capacity(double *capacity)
{
	if (capacity == NULL)
		return -1;
	*capacity = 0;
	FILE *procpt;
	char line[100];
	double ma, mi;
	char tmp[4][100];

	procpt = popen("fdisk -l /dev/mmcblk0", "r");

	while (fgets(line, sizeof(line), procpt))
	{
		if (sscanf(line, "%[^ ] %[^ ] %lf %[^ ] %lf %[^\n ]", tmp[0], tmp[1],
				&mi, tmp[2], &ma, tmp[3]) != 6)
			continue;
		*capacity = ma;
		break;
	}
	pclose(procpt);
	return 0;
}