91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux中怎么獲取flash分區大小

發布時間:2021-07-29 11:17:56 來源:億速云 閱讀:613 作者:Leah 欄目:互聯網科技

linux中怎么獲取flash分區大小,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

在嵌入式系統中,由于flash存儲空間有限,或者是存儲數據,實現數據的循環刪除,需要獲取到分區的使用情況,可以通過系統下的函數statfs來獲取使用情況;實現代碼如下:

flashInfo.cpp


#include <stdio.h>                                                                                                                  #include <stdlib.h>#include <unistd.h>#include <sys/vfs.h> typedef unsigned long long u64; //unit: 0-MBytes, 1-KBytes, default MBytesint getPartitionUse(const char *dir, size_t &totleSize, size_t &freeSize, int unit){    struct statfs diskInfo;      int ret = statfs(dir, &diskInfo);    if ( ret != 0 )  {    perror("getPartitionUse statfs error ");    return ret;  }      u64 allBlocks = diskInfo.f_bsize;      u64 tmpTotalSize = allBlocks * diskInfo.f_blocks;      u64 tmpFreeDisk = diskInfo.f_bfree*allBlocks;      totleSize = tmpTotalSize>>20;    freeSize  = tmpFreeDisk>>20;    if(unit == 0)  {      totleSize  = tmpTotalSize>>20;      freeSize  = tmpFreeDisk>>20;    }  else if( unit == 1 )  {    totleSize  = tmpTotalSize>>10;      freeSize  = tmpFreeDisk>>10;  }    return 0;} int main(){  size_t totleSize = 0;  size_t freeSize = 0;      getPartitionUse("/", totleSize,freeSize, 0);    printf ("system  total=%dMB, free=%dMB\n", totleSize, freeSize);      getPartitionUse("/work/data", totleSize,freeSize, 0);    printf ("data  total=%dMB, free=%dMB\n", totleSize, freeSize);        getPartitionUse("/work", totleSize,freeSize, 0);    printf ("config  total=%dMB, free=%dMB\n", totleSize, freeSize);  
}

編譯:

mipsel-linux-g++ flashInfo.c -o flashInfo

運行結果如下:

linux中怎么獲取flash分區大小

關于linux中怎么獲取flash分區大小問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绵阳市| 和政县| 特克斯县| 稻城县| 安康市| 崇左市| 德惠市| 辉南县| 北辰区| 海丰县| 休宁县| 邛崃市| 宜黄县| 资源县| 略阳县| 灯塔市| 密山市| 溆浦县| 武鸣县| 额济纳旗| 临潭县| 罗城| 塘沽区| 昌都县| 茶陵县| 遂川县| 烟台市| 汉寿县| 忻州市| 达州市| 大新县| 方山县| 香河县| 宜昌市| 景宁| 渝北区| 莱西市| 永昌县| 赤水市| 佛教| 满城县|