#include <iostream>
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
//#include <fcntl.h>
using namespace std;
//文件名,而不是指针
int GetFileLen( char *fileName )
{
struct stat st;
stat(fileName, &st);
return st.st_size;
}
linux下获取文件大小
最新推荐文章于 2023-06-26 00:13:33 发布