C 读写文件

读文件:

/*
 * main.c
 *
 *  Created on: 2016年1月13日
 *      Author: Administrator
 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>//strerrno
#include <errno.h>
#include <unistd.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

int main(int argc,char *argv[])
{
    char *file_name = "abc.txt";
    /*
     * Given  a  pathname  for a file, open() returns a file descriptor, a small, nonnegative integer for
       use in subsequent system calls (read(2), write(2), lseek(2), fcntl(2), etc.)
     */
    int fd = open(file_name,O_RDONLY);
    if(fd == -1)
    {
        printf("open file %s errnro:\n",file_name,strerror(errno));
    }
    else
    {
        printf("fd = %d\n",fd);
        char buf[128];
        memset(buf,0x00,sizeof(buf));
        int i = 0;
        while(i = read(fd,buf,sizeof(buf)-1))//每次读的时候不要把buff读完,请留一个来放置\0
        {
            printf("%s\n",buf);
            memset(buf,0x00,sizeof(buf));//每次读完buf后要清空buf
            printf("return length = %d\n",i);
        }
        printf("return length = %d\n",i);//读到文件结尾符号EOF,返回值为0,所以退出循环
        close(fd);
    }

    return 0;
}



写文件:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>//strerrno
#include <errno.h>
#include <unistd.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

int main(int argc,char *argv[])
{
	char *file_name = "test.txt";
	/*
	 * Given  a  pathname  for a file, open() returns a file descriptor, a small, nonnegative integer for
       use in subsequent system calls (read(2), write(2), lseek(2), fcntl(2), etc.)
	 */
	int fd = open(file_name,O_RDWR|O_APPEND);
	if(fd == -1)
	{
		printf("open file %s errnro:\n",file_name,strerror(errno));
	}
	else
	{
		printf("fd = %d\n",fd);
		char buf[128];
		memset(buf,0x00,sizeof(buf));
		strcpy(buf,"hello world");
		int i = write(fd,buf,strlen(buf));//这里用strlen最好,我们就写11个字节,一个也不多。如果是sizeof的话会写很多\0到文件中
		//strlen不计算字符串结尾的\0
		printf("return length = %d\n",i);
		close(fd);
	}

	return 0;
}




#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>

int main(int argc, char* argv[])
{
	// STDIN_FILENO:    O_RDONLY   标准输入是只读
	// STDOUT_FILENO:  O_WRONLY   标准输出是只写
	// STDERR_FILENO:             标准出错


	close(STDOUT_FILENO);//关闭标准输出(1)
	//The argument flags must include one of the following access modes: O_RDONLY, O_WRONLY, or O_RDWR
	int fd1 = open("/dev/pts/0", O_WRONLY);
	if (fd1 == -1)
	{
		printf("open file failed %s \n", strerror(errno));
	}
	else
	{
		printf("fd1 = %d\n",fd1);
	}
	int fd = open("a.txt", O_RDONLY);
	if (fd == -1)
	{
		printf("open file failed %s \n", strerror(errno));
	}
	else
	{
		printf("fd = %d\n",fd);
	}
	char buf[1024];
	memset(buf, 0, sizeof(buf));

	while (read(fd, buf, sizeof(buf)) > 0)
	{
		//printf("%s", buf);
		write(fd1, buf, sizeof(buf));//将输出写到fd1文件描述符(/dev/pts/0)
		memset(buf, 0, sizeof(buf));
	}
	close(fd);

	return 0;
}



//读文件的代码

int main(int arg, char *args[])
{
    if (arg < 2)
        return 0;
    int fd = open(args[1], O_RDONLY); //只读方式打开文件abc.txt
    if (fd == -1)
    {
        printf("error is %s\n", strerror(errno));
    } else
    {
        printf("success fd = %d\n", fd);
        char buf[100];
        memset(buf, 0, sizeof(buf));
        while(read(fd, buf, sizeof(buf) - 1) > 0)//循环读取文件内容,直到文件结尾,退出循环
        {
            printf("%s\n", buf);
            memset(buf, 0, sizeof(buf));
        }
        close(fd);
    }
    return 0;
}

//写文件的代码

int main(int arg, char *args[])
{
    char s[] = "abc.txt";
    int fd = open(s, O_RDWR | O_APPEND);//用读写追加方式打开文件
    if (fd == -1)
    {
        printf("error is %s\n", strerror(errno));
    }else
    {
        printf("success fd = %d\n", fd);
        char buf[100];
        memset(buf, 0, sizeof(buf));
        strcpy(buf, "hello world\n");
        int i = write(fd, buf, strlen(buf));//这里要用strlen函数
        close(fd);
    }
    return 0;
}


//得到文件状态代码

int main(int arg, char *args[])
{
    int fd = open(args[1], O_RDONLY);
    if (fd == -1)
    {
        printf("error is %s\n", strerror(errno));
    }else
    {
        printf("success fd = %d\n", fd);
        struct stat buf;
        fstat(fd, &buf);
        if (S_ISREG(buf.st_mode))//判断文件是否为标准文件
        {
            printf("%s is charfile\n", args[1]);
        }
        if (S_ISDIR(buf.st_mode))//判断文件是否为目录
        {
            printf("%s is dir\n", args[1]);
        }

        printf("%s size =%d\n", args[1], buf.st_size);//得到文件大小

        close(fd);
    }
    return 0;
}


//C库函数读取文件的代码
int main(int arg, char *args[])
{
    FILE *p = fopen(args[1], "r+");
    if (p == NULL)
    {
        printf("error is %s\n", strerror(errno));
    }else
    {
        printf("success\n");
        char buf[100];
        size_t rc = 0;
        while(1)
        {
            size_t tmp = fread(buf, 1, sizeof(buf), p);//原则是第二个参数乘以第三个参数的大小不能超过缓冲区
            rc += tmp;
            if (tmp == 0)
                break;

        }
        printf("rc = %d\n", rc);
        fclose(p);
    }
    return 0;
}


//c库函数读写二进制文件的代码

struct person
{
    int id;
    char name[20];
    int age;
    int sex;
    char tel[20];
};


int main(int arg, char *args[])
{
    FILE *p = fopen(args[1], "w");
    if (p == NULL)
    {
        printf("error is %s\n", strerror(errno));
    } else
    {
        printf("success\n");
        struct person man;
        memset(&man, 0, sizeof(man));

        while(fread(&man, sizeof(struct person), 1, p))
        {
            printf("id=%d\n", man.id);
            printf("name=%s\n", man.name);
            printf("age=%d\n", man.age);
            printf("tel=%s\n", man.tel);
        }
        fclose(p);
    }
    return 0;
}

int main(int arg, char *args[])
{
    FILE *p = fopen(args[1], "w");
    if (p == NULL)
    {
        printf("error is %s\n", strerror(errno));
    } else
    {
        printf("success\n");
        struct person man[10];
        memset(&man, 0, sizeof(man));

        man[0].id = 0;
        strcpy(man[0].name, "苍井空");
        man[0].age = 50;
        man[0].sex = 1;
        strcpy(man[0].tel, "911");

        man[1].id = 1;
        strcpy(man[1].name, "饭岛爱");
        man[1].age = 20;
        man[1].sex = 0;
        strcpy(man[1].tel, "119");

        fwrite(&man, sizeof(struct person), 2, p);
        fclose(p);
    }
    return 0;
}

//写log的代码
void writelog(const char *log)
{
    time_t tDate;
    struct tm *eventTime;
    time(&tDate);//得到系统当前时间
    eventTime = localtime(&tDate);//将time_t数据类型转化为struct tm结构
    int iYear = eventTime->tm_year + 1900;
    int iMon = eventTime->tm_mon + 1;
    int iDay = eventTime->tm_mday;
    int iHour = eventTime->tm_hour;
    int iMin = eventTime->tm_min;
    int iSec = eventTime->tm_sec;

    printf("tm_isdst = %d\n", eventTime->tm_isdst);

    char sDate[16];
    sprintf(sDate, "%04d-%02d-%02d", iYear, iMon, iDay);
    char sTime[16];
    sprintf(sTime, "%02d:%02d:%02d", iHour, iMin, iSec);
    char s[1024];
    sprintf(s, "%s %s %s\n", sDate, sTime, log);
    FILE *p = fopen("my.log", "a+");
    if (p == NULL)
    {
        printf("write log my.log error:%s\n", strerror(errno));
    }else
    {
        fputs(s, p);
        fclose(p);
    }
    return;
}

//读目录的代码

int main(int arg, char *args[])
{
    if (arg <2)
        return 0;

    DIR *dp;
    struct dirent *dirp;
    dp = opendir(args[1]);//打开目录文件
    if (dp == NULL)
    {
        printf("error is %s\n", strerror(errno));
        return 0;
    }

    while((dirp = readdir(dp)) != NULL)//用readdir循环读取目录内容,读到目录尾,循环break
    {
        printf("%s\n", dirp->d_name);//将目录下的文件名打印到屏幕

    }

    closedir(dp);//关闭目录

    return 0;
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值