您好,登錄后才能下訂單哦!
怎么在C語言中利用fstat函數(shù)獲取文件的大???針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
函數(shù)原型:int fstat(int fildes, struct stat *buf);
參數(shù)說明:
fstat()
用來將參數(shù)fildes所指的文件狀態(tài),復(fù)制到參數(shù)buf所指的結(jié)構(gòu)中(struct stat)。
寫個(gè)范例:
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> //獲取文件的大小 int get_file_size(int f) { struct stat st; fstat(f, &st); return st.st_size; } int main(void) { int fd = open("test.py",O_RDWR); int size ; if(fd < 0) { printf("open fair!\n"); return -1 ; } size = get_file_size(fd) ; printf("size:%d字節(jié)--->%.2fK\n",size,(float)size/1024); return 0 ; }
關(guān)于怎么在C語言中利用fstat函數(shù)獲取文件的大小問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。