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

C语言 文件操作

时间:2014-08-09 18:13:59      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   io   文件   2014   

/**
*@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语言 文件操作

标签:des   style   blog   color   os   io   文件   2014   

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

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