C语言读写文件

C语言读写文件一:打开文件句柄//参数1:文件路径//参数2:文件打开模式函数执行成功返回文件流指针,错误返回NULL。FILE*fopen(constchar*path,constchar*mode);模式操作区别文件要求r读…

大家好,又见面了,我是你们的朋友全栈君。

一:打开文件句柄

//参数1:文件路径

//参数2:文件打开模式

函数执行成功返回文件流指针,错误返回NULL。

FILE *fopen(const char *path, const char *mode);

 

模式               操作              区别                   文件要求

r                      读            从文件头开始        文件需存在

r+                  读写          从文件头开始        文件需存在

w                    写            从文件头开始        文件不存在则创建,存在则清空

w+                 读写         从文件头开始         文件不存在则创建,存在则清空

a                     写           从文件尾开始         文件不存在进行创建,存在则追加

a+                 读写         从文件头读取,从文件尾写入       文件不存在进行创建,存在则追加

 

代码示例:

#include <stdio.h>

int main()
{
    FILE *p = fopen("/tmp/1.txt", "r");
    if(p == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    fclose(p);
    return 0;
}

 

二:文件关闭

//参数1:文件流

int fclose(FILE *fp);

 

三:文件写入

1、字符写入:fputc();

//参数1:写入的字符

//参数2:文件流

//作用:将单个字符写入到文件中

//返回值:成功时,返回写入字符的ascii码值,错误返回EOF(-1)

int fputc(int c, FILE *stream);

 

示例:

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

int main()
{
    FILE *file = fopen("/opt/admin/tmp/1.txt", "w");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char name[] = "hello world!";
    int i;
    for(i = 0; i < strlen(name); i++)
    {
        fputc(name[i], file);
    }
    fputc('\n', file);
    fclose(file);
    return 0;
}

 

2、字符串写入:fputs();

//参数1:写入的字符串

//参数2:文件流

//作用:将字符串写入文件中

//返回值:返回一个非负值,如果发生错误则返回 EOF(-1)。

int fputs(const char *s, FILE *stream);

 

示例:

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

int main()
{
    FILE *file = fopen("/opt/admin/tmp/1.txt", "w");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char name[] = "hello world!\n";
    fputs(name, file);
    fclose(file);
    return 0;
}

 

3、数据块写入:fwrite();

//参数1:要获取的数据的地址

//参数2:要写入内容的单字节数

//参数3:要写入size字节的数据项的个数

//参数4:目标文件指针

//返回值:返回实际写入的数据块的数目

//作用:向文件写入数据块,以二进制形式对文件进行操作,不局限于文本文件。

size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);

 

示例:

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

int main()
{
    FILE *file = fopen("/opt/admin/tmp/1.txt", "wb+");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char name[] = "hello world!\n";
    fwrite(name, strlen(name), 1, file);
    fclose(file);
    return 0;
}

 

4、格式化写入:fprintf();

//参数1:目标文件指针

//参数2:指定的格式控制字符串

//参数3:各种输出项,与格式控制字符串中的字段一起写到文件中

//返回值:执行成功返回实际写入文件的字符个数;执行失败,返回负数

//作用:用来将输出项按指定的格式写入到指定的文本文件中。

int fprintf(FILE *stream, const char *format, …);

 

示例:

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

int main()
{
    FILE *file = fopen("/opt/admin/tmp/1.txt", "wb+");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char name[] = "hello world!\n";
    fprintf(file, "this is %s\n", name);
    fclose(file);
    return 0;
}

四:文件读取

1、字符读取:fgetc()

//参数1:目标文件指针

//返回值:执行成功返回读取的字符,读取错误或者遇到结束标志EOF,返回EOF

//作用:从指定的文件中读取一个字符

int fgetc(FILE *stream);

 

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char c;
    while((c = fgetc(file)) != EOF)
    {
        printf("%c", c);
    }
    fclose(file);
    return 0;
}

2、字符串读取:fgets()

//参数1:存储读取的数据

//参数2:存储数据的大小

//参数3:要读取的文件流

//返回值:成功则返回读取的buf,失败则返回NULL,这是,buf中的数据不确定

//作用:读取指定场长度的字符串存到字符数组中。每次只读取一行,每次最多读bufsize-1个字符(第bufsize个字符赋’\0’)

char *fgets(char *buf, int bufsize, FILE *stream);

 

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char buf[1024] = {0};
    while(fgets(buf, 1024, file) != NULL)
    {
        printf("%s", buf);
    }
    fclose(file);
    return 0;
}

3、数据块读取:fread()

//参数1:存储读取的数据

//参数2:要读取的每个数据项的字节数

//参数3:要读取的数据项的个数

//参数4:读取的文件流

//返回值:返回真实读取的数据项count数,错误时返回0

//作用:一次读取文件中由若干个数据项组成的数据块,数据块的大小取决于数据项的大小和数据项的个数。

size_t fread ( void *buffer, size_t size, size_t count, FILE *stream) ;

 

示例:

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

int main()
{
    FILE *file = fopen("./test", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char buf[102400] = {0};
    fread(buf, 1024, 100, file);
    printf("%s", buf);
    fclose(file);
    return 0;
}

 

4、格式化读取:fscanf()

//参数1:读取的文件流

//参数2:读取的字符格式

//参数3:读取的各个输入项

//返回值:成功则返回读入的参数个数,失败返回EOF

//作用:根据数据格式format从文件流中读取数据,遇到空格或换行结束。

int fscanf(FILE*stream,const char*format,[argument…]);

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    char buf[1024] = {0};
    fscanf(file, "%s", buf);
    printf("%s\n", buf);
    fclose(file);
    return 0;
}

 

五:文件读写结合

1、fgetc()与fputc()结合使用

//以字符格式读取文件,再以字符格式写入文件,适用于文本文件

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    FILE *fp = fopen("./2.txt", "w");
    char c;
    while( (c = fgetc(file)) != EOF )
    {
        fputc(c, fp);
    }
    fclose(file);
    fclose(fp);
    return 0;
}

 

2、fgets()与fputs()结合使用

//从文件中按行读取字符串,再以字符串写入文件,适用于文本文件,优点是按行读取很方便

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    FILE *fp = fopen("./2.txt", "w");
    char buf[1024] = {0};
    while(fgets(buf, 1024, file) != NULL)
    {
        fputs(buf, fp);
    }
    fclose(file);
    fclose(fp);
    return 0;
}

 

3、fread()与fwrite()结合使用

//以数据块格式读取,再以数据块格式写入到文件中,可以读取二进制文件,优点是读取二进制文件使用

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    FILE *fp = fopen("./2.txt", "w");
    char buf[1024] = {0};
    fread(buf, 1024, 1, file);
    fwrite(buf, strlen(buf), 1, fp);
    fclose(file);
    fclose(fp);
    return 0;
}

4、fprintf()与fscanf()结合使用

//以格式化的方式读取,遇到空格或换行就结束,再将读取的文件写入到文件中,优点是可以指定写入的文件格式

示例:

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

int main()
{
    FILE *file = fopen("./1.txt", "r");
    if(file == NULL)
    {
        printf("open error!\n");
        return 0;
    }
    FILE *fp = fopen("./2.txt", "w");
    char buf[1024] = {0};
    fscanf(file, "%s", buf);
    fprintf(fp, "aaa:%s", buf);
    fclose(file);
    fclose(fp);
    return 0;
}

 

参考:

https://www.cnblogs.com/maluning/p/7955750.html

https://blog.csdn.net/songbook/article/details/79686322

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/137060.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 机器学习框架对比

    机器学习框架对比2.1主流深度学习框架对比各个开源框架在Github上的数据统计数据统计截止于2017.07.15可以看到各大主流框架基本都支持Python,目前Python在科学计算和数据挖掘领域可以说是独领风骚。虽然有来自R、Julia等语言的竞争压力,但是Python的各种库实在是太完善了,Web开发、数据可视化、数据预处理、数据库连接,爬虫等无所不能,有一个完美的生态环境。仅

  • 使用BoundsChecker「建议收藏」

     BoundsChecker是一个Run-Time错误检测工具,它主要定位程序在运行时期发生的各种错误。              BoundsChecker能检测的错误包括:3sNews.Net——3S社区&资讯平台tbU^N@i7pwMVBe    1)指针操作和内存、资源泄露错误,比如:内存泄露;资源泄露;对指针变量的错误操作。   

  • MySQL TENSE

    MySQL TENSE

  • delay函数的用法及声明

    delay函数的用法及声明在VC中使用带上头文件#include注意:在VC中Sleep中的第一个英文字符为大写的”S”在标准C中是sleep,不要大写..下面使用大写的来说明,,具体用什么看你用什么编译器.简单的说VC用Sleep,别的一律使用sleep.Sleep函数的一般形式:Sleep(unisgnedlong);其中,Sleep()里面的单位,是以毫秒为单位

  • android listview 滚动到底部

    android listview 滚动到底部androidlistview滚动到底部,亲试有效:listView.setSelection(ListView.FOCUS_DOWN);//刷新到底部。注意:调用完了,不要调用listView.invalidateViews();

  • 各大技术团队博客_如何扩大团队规模

    各大技术团队博客_如何扩大团队规模BAT技术团队博客1.美团技术团队博客: 地址: http://tech.meituan.com/2. 腾讯社交用户体验设计(ISUX)地址:http://isux.tencent.com/3. 京东设计中心地址:http://jdc.jd.com4. QQ游戏设计中心地址:ht

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号