无
nanqihao
全部博文(86)
2010年(12)
2009年(60)
2008年(14)
可怜的猪
abx1999
格伯纳
cynthia
jzy11358
along819
需要努力
mountain
richardg
分类: C/C++
2009-03-02 19:46:45
先用fopen打开文件,然后把文件指针指向文件尾. 再用ftell获得文件指针当前位置(即文件长度).
源代码:
#include "stdafx.h"#include #include
using namespace std;
int main(){FILE* fp = NULL;int nFileLen = 0;
fp = fopen("c:/Test.txt", "rb");
if (fp == NULL){ cout << "can't open file" << endl;
return 0;}
fseek(fp,0,SEEK_END); //定位到文件末 nFileLen = ftell(fp); //文件长度
cout << "file len = " << nFileLen << endl;
上一篇:ARM ADS中的AXD 调试经验
下一篇:磁盘、SD卡、移动磁盘物理扇区读写
登录 注册