当前位置: 技术问答>linux和unix
文件大小
来源: 互联网 发布时间:2014-11-27
本文导语: 用c语言,如何得到一个文件的大小。 | #include #include #include #include int main() { struct stat *buff; buff=(struct stat *)malloc(sizeof(struct stat)); stat("你的文件...
用c语言,如何得到一个文件的大小。
|
#include
#include
#include
#include
int main()
{
struct stat *buff;
buff=(struct stat *)malloc(sizeof(struct stat));
stat("你的文件名",buff);
printf("size=%d bytesn",buff->st_size);
free(buff);
return 0;
}
stat函数,你可以man一下
#include
#include
#include
int main()
{
struct stat *buff;
buff=(struct stat *)malloc(sizeof(struct stat));
stat("你的文件名",buff);
printf("size=%d bytesn",buff->st_size);
free(buff);
return 0;
}
stat函数,你可以man一下