首页 > 代码库 > C fwrite
C fwrite
功能:向文件读入写入一个数据块。
用法:fwrite(const void *buffer,size_t size,size_t count,FILE *stream);
(1)buffer:是一个指针,对fwrite 来说,是要输出数据的地址。
(2)size:要写入内容的单字节数;
(3)count:要进行写入size字节的数据项的个数;
(4)stream:目标文件指针。
说明:写入到文件的哪里与文件的打开模式有关,如果是r+,则是从file pointer 指向的地址开始写,替换掉之后的内容,文件的长度可以不变,stream的位置移动count个数。如果是a+,则从文件的末尾开始添加,文件长度加大,而且是fseek函数对此函数没有作用。
demo1:
[cpp] view plaincopy
- #include <stdio.h>
- #include <process.h>
- typedef struct
- {
- int i;
- char ch;
- }mystruct;
- int main()
- {
- FILE *stream;
- mystruct s;
- /*wb只写打开或新建一个二进制文件;只允许写数据。*/
- if ((stream=fopen("test.$$$","wb"))==NULL)
- {
- fprintf(stderr,"cannot open output file.\n");
- return 1;
- }
- s.i=0;
- s.ch=‘A‘;
- fwrite(&s,sizeof(s),1,stream);
- fclose(stream);
- stream=NULL;
- system("pause");
- return 0;
- }
demo2:
[cpp] view plaincopy
- #include <stdio.h>
- int main()
- {
- FILE *pFile=NULL;
- char buffer[]={‘x‘,‘y‘,‘z‘};
- pFile=fopen("myfile.bin","wb");
- fwrite(buffer,sizeof(buffer),1,pFile);
- fclose(pFile);
- system("pause");
- return 0;
- }
demo3:
[cpp] view plaincopy
- #include <stdio.h>
- #include <process.h>
- int main()
- {
- FILE *fp=NULL;
- char msg[]="file content";
- char buf[20];
- fp=fopen("c:\\a.txt","w+"); //二级目录会不成功
- if (NULL==fp)
- {
- printf("The file doesn‘t exist!\n");
- getchar();
- getchar();
- return -1;
- }
- fwrite(msg,strlen(msg),1,fp); //把字符串内容写入到文件
- fseek(fp,0,SEEK_SET); //定位文件指针到文件首位置
- fread(buf,strlen(msg),1,fp); //把文件读入到缓存
- buf[strlen(msg)]=‘\0‘; //删除缓存内多余空间
- printf("buf=%s\n",buf);
- printf("strlen(buf) = %d\n",strlen(buf));
- system("pause");
- return 0;
- }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。