首页 > 编程语言 > 详细

C语言 文件操作

时间:2014-08-09 18:13:59      阅读:322      评论:0      收藏:0      [点我收藏+]
/**
*@author cody
*@date 2014-08-09
*@description copy text file
* FILE *fopen(filename,openmode)
* fclose(FILE *stream)
* int fseek(stream,offset,whence)
* long ftell(stream)
* void rewind(stream)
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char const *argv[])
{
    
    FILE *fp = fopen("file","r+");
    if(fp == NULL){

        perror("open error");
        exit(1);
    }

    /*if(fseek(fp,8,SEEK_SET) != 0){
        perror("seek error");
        exit(0);
    }

    long pos = ftell(fp);
    printf("file current pos = %ld\n",pos );

    fputc(‘W‘,fp);*/
    fseek(fp,4,SEEK_SET);
    fputs("Hello,my name is cody wu\nwhat‘s your name\n",fp);

    
    
    fclose(fp);


    return 0;
}

 

C语言 文件操作,布布扣,bubuko.com

C语言 文件操作

原文:http://www.cnblogs.com/cody1988/p/3901155.html

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