首页 > 代码库 > C语言 文件操作
C语言 文件操作
/***@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;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。