首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

获取资料流的长度

2012-08-22 
获取文件流的长度FILE* mFile fopen(xxx_file, rb)fseek(mFile, 0, SEEK_END)int size ftello(m

获取文件流的长度

FILE* mFile = fopen("xxx_file", "rb");fseek(mFile, 0, SEEK_END);int size = ftello(mFile);
?

热点排行