首页 > 编程语言 > 详细

c语言中文件的读写、fp位置操作

时间:2014-11-11 23:04:54      阅读:518      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>
#include <stdlib.h>
int main()
{
    FILE *file;
    file = fopen("./text","rb");
    
    //获取文件长度
    fseek(file,0,SEEK_END);
    int tell_len = ftell(file);
    fseek(file,0,SEEK_SET);
    
    char *buff = (char *)mem_get(char,tell_len+1);
    int read_len = fread(buff,len,1,file);
    printf("read file len = %d\n",file);
    
    //从文件中间读取1024个字节
    int pos = tell_len/2;
    fseek(file,pos,SEEK_SET);
    char buf[1025] = "\0";
    int len = freadd(buf,1024,1,file);
    
    printf("buf = %s\n",buf);
    return 0;

}


c语言中文件的读写、fp位置操作

原文:http://sysq2012cto.blog.51cto.com/8202674/1575425

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!