码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2014-11-11 23:06:58      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:c 文件读写 fp fseek

#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位置操作

标签:c 文件读写 fp fseek

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!