摘要: 1.读取文件 FILE *file = fopen(file_path,"rb"); 2.获取文件大小 fseeko(file,0,SEEK_END); uint64_t file_size = ftello(file); fseeko(file,0,SEEK_SET); 3.读取文件 size_t 阅读全文
posted @ 2018-05-30 14:41 蓝天飞翔的白云 阅读(119) 评论(0) 推荐(0)