当前位置:   article > 正文

文件I/O_open(argv[1], o_creat | o_rdonly | o_trunc, 0666

open(argv[1], o_creat | o_rdonly | o_trunc, 0666

学习笔记,小白可以相互学习,大佬看到能告诉咱理解不对的地方就好了。


文件I/O不同于标准I/O是不带缓冲的,即是每个read和write都调用内核中的相应系统调用。

对于内核而言,所有的打开文件都是有文件描述符引用。文件描述符就是一个非负整数。


函数:

1.open

int open(const char *pathname,int flages)

int open(const char *pathname,int flages,mode_t mode)

int creat(const char *pathname,mode_t mode)

头文件:sys/types.h sys/stat.h fcntl.h

打开一个文件open()和创建一个文件create()成功返回文件描述符,失败返回-1,并设置errno。

creat()等价于open(pathname,O_CREAT | O_WRONLY | O_TRNUC,mode)

open()可以打开设备文件,但是不能创建设备文件,设备文件必须用mknod()创建

open的参数:

flash:

1.O_RDNOLY只读方式打开文件

2.O_WRNOLY只写方式打开文件

3.O_RDWR读写方式打开文件    //前面这三个参数互斥,即不能同时存在

4.O_CREAT如果文件不存在,则建立,并且设置mode

//不常用 O_EXCL如果使用O_CREAT是文件存在,则返回错误信息,这个参数可以检测文件是否存在

//不常用 O_NOCTTY使用本参数时,如果文件为终端,那么终端不可以作为调用open()系统调用的那个进程控制终端

5.O_TRUNC如果文件已经存在,那么删除原来文件中的数据(清空)

6.O_APPEND以添加方式打开文件,所以对文件的写操作都是在文件末尾进行的

mode:

被打开文件的存取权限,为8进制表示法。例如0777(满权限),只用在使用O_CREAT参数的时候才会用到。


2.close

#include<unistd.h>

int close(int files);

可以关闭一个打开的文件,调用成功返回0,出错返回-1,并设置errno


3.read

#include<unistd.h>

ssize_t read(int fd,void *buf,size_t count);

读取一个已经打开的文件中的数据,调用成功返回读取的字节数,如果到达文件末尾返回0,出错返回-1,并设置errno


4.write

#include<unistd.h>

ssize_t write(int fd,void *buf,size_t count);

向一个已经打开的可写文件中写入数据,调用成功返回写入的字节数,失败返回-1,并设置errno


5.lseek

#include<unistd.h>

#include<sys/types.h>

off_t lseek(int fd,off_t offset,int whence);

fd文件描述符,offset偏移量(单位byte),whence当前位置基点(SEEK_SET 文件开头,SEE_CUR当前位置, SEEK_END文件尾)

调用成功:文件当前位置,失败:-1
注意:lseek只对常规文件有效
  1. #include<stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <strings.h>
  5. #include <sys/types.h>
  6. #include <sys/stat.h>
  7. #include <fcntl.h>
  8. int main(int argc, char *argv[])
  9. {
  10. if (argc < 3) {
  11. fprintf(stderr, "Usage: %s <src_file> <dest_file>\n",argv[0]);
  12. return -1;
  13. }
  14. int fin;
  15. int fout;
  16. fin = open(argv[1],O_RDONLY);
  17. if(-1 == fin)
  18. {
  19. // printf("file %s can't open",argv[1]);
  20. perror("open file1");
  21. return -1;
  22. }
  23. if((fout = open(argv[2],O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1)
  24. {
  25. perror("open file2");
  26. return -1;
  27. }
  28. int ret;
  29. char buf[100];
  30. while(1)
  31. {
  32. ret = read(fin, buf, sizeof(buf));
  33. if (ret < 0) {
  34. perror("read");
  35. break;
  36. }else if (ret == 0) {
  37. printf("read file end!\n");
  38. break;
  39. }
  40. if (ret != write(fout, buf, ret)) {
  41. perror("write");
  42. break;
  43. }
  44. }
  45. close(fin);
  46. close(fout);
  47. }

/*****************上下这两个代码都是实现copy功能**************************************/

  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<sys/stat.h>
  4. #include<unistd.h>
  5. #include<fcntl.h>
  6. int main(int argc,char *argv[])
  7. {
  8. if(argc < 3)
  9. {
  10. printf("将filename1中的内容拷贝到filename2中去\n");
  11. fprintf(stderr,"usage:%s filename1 filename2\n",argv[0]);
  12. return -1;
  13. }
  14. int fd;
  15. if( 0 > (fd = open(argv[1],O_RDWR)))
  16. {
  17. perror("open");
  18. return -1;
  19. }
  20. int fd1;
  21. if( 0 > (fd1 = open(argv[2],O_CREAT|O_RDWR|O_TRUNC,0664)))
  22. {
  23. perror("open");
  24. return -1;
  25. }
  26. char buf[100];
  27. int ret;
  28. int r;
  29. while(1)
  30. {
  31. ret = read(fd,buf,sizeof(buf));
  32. if(ret < 0)
  33. {
  34. perror("read");
  35. }
  36. else if( 0 == ret)
  37. {
  38. printf("read file end\n");
  39. break;
  40. }
  41. r = write(fd1,buf,ret);
  42. if( ret != r)
  43. {
  44. perror("write");
  45. break;
  46. }
  47. }
  48. close(fd);
  49. close(fd1);
  50. return 0;
  51. }

/*************下面是creat***********************************/

  1. #include<stdio.h>
  2. #include<sys/stat.h>
  3. #include<sys/types.h>
  4. #include<fcntl.h>
  5. int main()
  6. {
  7. int fd;
  8. if( 0 > (fd = creat("test.txt",644)))
  9. {
  10. perror("creat");
  11. return -1;
  12. }
  13. printf("fd = %d\n",fd);
  14. return 0;
  15. }

/*************lseek**************************/

  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<sys/stat.h>
  4. #include<unistd.h>
  5. #include<fcntl.h>
  6. int main(int argc,char *argv[])
  7. {
  8. if(argc < 2)
  9. {
  10. fprintf(stderr,"usage:%s filename\n",argv[0]);
  11. return -1;
  12. }
  13. int fd;
  14. if( 0 > (fd = open(argv[1],O_RDONLY)))
  15. {
  16. perror("open");
  17. return -1;
  18. }
  19. lseek(fd,100,SEEK_SET);
  20. char buf[100];
  21. int ret;
  22. while(1)
  23. {
  24. ret = read(fd,buf,sizeof(buf));
  25. if(ret < 0)
  26. {
  27. perror("read");
  28. }
  29. else if( 0 ==ret)
  30. {
  31. printf("read file end\n");
  32. break;
  33. }
  34. if( ret != write(1,buf,ret))
  35. {
  36. perror("write");
  37. break;
  38. }
  39. }
  40. close(fd);
  41. return 0;
  42. }

/**********************mywrite函数的思想**************************/

  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<sys/stat.h>
  4. #include<unistd.h>
  5. #include<fcntl.h>
  6. int mywrite(int fd);//将内容全部读入进去
  7. int main(int argc,char *argv[])
  8. {
  9. if(argc < 2)
  10. {
  11. fprintf(stderr,"usage:%s filename\n",argv[0]);
  12. return -1;
  13. }
  14. int fd;
  15. if( 0 > (fd = open(argv[1],O_RDONLY)))
  16. {
  17. perror("open");
  18. return -1;
  19. }
  20. char buf[100];
  21. int ret;
  22. while(1)
  23. {
  24. ret = read(fd,buf,sizeof(buf));
  25. if(ret < 0)
  26. {
  27. perror("read");
  28. }
  29. else if( 0 ==ret)
  30. {
  31. printf("read file end\n");
  32. break;
  33. }
  34. if( ret != write(1,buf,ret))
  35. //if( ret != mywrite(fd))
  36. {
  37. perror("write");
  38. break;
  39. }
  40. }
  41. close(fd);
  42. return 0;
  43. }
  44. int mywrite(int fd)//将内容全部读入进去
  45. {
  46. int ret;
  47. int buf[100];
  48. int count = 0;
  49. while( count < sizeof(buf))//如果没有全部读入则进行循环,直到全部读入
  50. {
  51. ret = write(fd,buf + count,sizeof(buf) - count);
  52. count = count + ret;
  53. }
  54. return count;
  55. }


/*************求能打开的最多文件数目:1024个*******************************/

  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<sys/stat.h>
  4. #include<fcntl.h>
  5. #include<unistd.h>
  6. int main()
  7. {
  8. int i = 3,a;
  9. while(1)
  10. {
  11. if( 0 > (a = open("11.c",O_CREAT | O_WRONLY | O_TRUNC,666)))
  12. {
  13. perror("open");
  14. break;
  15. }
  16. i++;
  17. printf("%d\n",i);
  18. }
  19. close(a);
  20. return 0;
  21. }




声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/186475
推荐阅读
相关标签
  

闽ICP备14008679号