当前位置:   article > 正文

linux 文件编程—open/read/write_o_rdwr|o_creat,0600

o_rdwr|o_creat,0600

此文章为个人学习笔记,其中的内容可能有些地方解释或者表达不是很清晰,所以本笔记 可参考 可借鉴 可指点!

open

  1. 头文件
  2. #include <sys/types.h>
  3. #include <sys/stat.h>
  4. #include <fcntl.h>
  5. 函数原型
  6. int open(const char *pathname, int flags);
  7. int open(const char *pathname, int flags, mode_t mode);
  8. int creat(const char *pathname, mode_t mode);

其中

Pathname:要打开的文件名(含路径,缺省为当前路径)

Flags:     O_RDONLY 只读打开        O_WRONLY 只写打开        O_RDWR 可读可写打开  

 当我们附带了权限后,打开的文件就只能按照这种权限来操作。    

以上这三个常数中应必须只指定一 个。

eg:open("./file1",O_RDWR|O_CREAT,0600);代表打开file1文件,若file1文件不存在则创建他,且是以可读可写(0600)的权限创建

下列常数是可选择的:            

O_CREAT 若文件不存在则创建它。使用此选项时,需要同时说明第三个参数mode,用其说明该新文件的存取许可权限。        

O_EXCL 如果同时指定了OCREAT,而文件已经存在,则出错返回 -1。用于判断是否存在该文件  

O_APPEND 每次写时都加到文件的尾端,即原有的数据不会被删除,而是在文件内原有的数据的尾部插入新写入的数据。      

 O_TRUNC 属性去打开文件时,如果这个文件中本来是有内容的,而且为只读或只写成功打开,则将其长度截短为0;如果是新写入内容,则将原有的内容全部覆盖。

Mode:一定是在flags中使用了O_CREAT标志,mode记录待创建的文件的访问权限

创建文件

以下为 打开(open) | 创建(creat) 文件 代码

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <fcntl.h>
  4. #include <stdio.h>
  5. int main()
  6. {
  7. int fd;
  8. fd=open("./file1",O_RDWR);//打开file1文件
  9. //如果打开失败,则返回文件描述符为-1
  10. if(fd==-1)
  11. {
  12. printf("open file1 failed !\n");
  13. fd=open("./file1",O_RDWR|O_CREAT,0600);
  14. //重新调用open,且加标志O_CREAT和权限0600,重新创建file1文件,失败返回-1,成功返回非负数整数
  15. if(fd>=0)
  16. {
  17. printf("creat file1 \n",fd);
  18. printf("fd = %d \n",fd);
  19. }
  20. return 0;
  21. }
  22. }
  23. ~

write

  1. #include <unistd.h>
  2. ssize_t write(int fd, const void *buf, size_t count);
  3. ssize_t 返回的是一个整数,即写入的字符个数,
  4. int fd 为被写进去的文件(文件描述符)
  5. const void *buf 为需要写入的内容的缓冲区
  6. size_t count 为写入内容的大小,多半用strlen来计算

上代码

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <fcntl.h>
  4. #include <stdio.h>
  5. #include <unistd.h>
  6. #include <string.h>
  7. #include <stdlib.h>
  8. int main()
  9. {
  10. int fd;
  11. char *buf="hello word !";
  12. fd=open("./file1",O_RDWR);
  13. if(fd==-1)
  14. {
  15. printf("open file1 failed !\n");
  16. fd=open("./file1",O_RDWR|O_CREAT,0600);
  17. if(fd>=0)
  18. {
  19. printf("creat file1 \n",fd);
  20. printf("fd = %d \n",fd);
  21. }
  22. }
  23. printf("creat file1 susceess: fd = %d \n",fd);//返回的文件描述符最低都是从3开始的
  24. int n_write;
  25. n_write=write(fd,buf,strlen(buf));
  26. printf("n_write = %d !",n_write);
  27. close(fd);//打开了文件,一定要关掉,不让容易造成一些段错误或文件的损坏
  28. return 0;
  29. }
  30. ~

注意:当向某个文件里面写入了数据,写完之后光标会定位在数据的尾端,下次打开光标依旧在尾端(上次打开没有关闭close或者lseek),确保每次写完数据之后,光标能够定位在文件内数据的最开头,则要么在对该文件操作完之后关闭,要么就用lseek函数将光标重新定位。


关闭文件close

  1.  #include <unistd.h>
  2.  int close(int fd);


read

  1. #include <unistd.h>
  2. ssize_t read(int fd, void *buf, size_t count);
  3. ssize_t 返回的是一个整数,即读出的字符个数,
  4. int fd 为被读的文件(文件描述符),如果没有该文件,则会阻塞
  5. void *buf 为读出来的内容放置的缓冲区
  6. size_t count 为读出内容的大小,用strlen来计算,strlen(buf)

上代码 

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <fcntl.h>
  4. #include <stdio.h>
  5. #include <unistd.h>
  6. #include <string.h>
  7. #include <stdlib.h>
  8. int main()
  9. {
  10. int fd;
  11. char *buf="hello word !";
  12. fd=open("./file1",O_RDWR);
  13. if(fd==-1)
  14. {
  15. printf("open file1 failed !\n");
  16. fd=open("./file1",O_RDWR|O_CREAT,0600);
  17. if(fd>=0)
  18. {
  19. printf("creat file1 \n",fd);
  20. printf("fd = %d \n",fd);
  21. }
  22. }
  23. printf("open file1 susceess: fd = %d \n",fd);
  24. //ssize_t write(int fd, const void *buf, size_t count);
  25. int n_write=write(fd,buf,strlen(buf));
  26. if(n_write!=-1)
  27. {
  28. printf("wrie %d byte to file1\n",n_write);
  29. }
  30. close(fd);
  31. fd=open("./file1",O_RDWR);
  32. //ssize_t read(int fd, void *buf, size_t count);
  33. char *readbuf=NULL;
  34. readbuf=(char *)malloc(sizeof(char)*n_write);
  35. int n_read=read(fd,readbuf,n_write);
  36. printf("read %d byte from file1: %s \n",n_read,readbuf);
  37. close(fd);
  38. return 0;
  39. }

 运行结果


lseek

  1. #include <sys/types.h>
  2. #include <unistd.h>
  3. off_t lseek(int fd, off_t offset, int whence);
  4. off_t 返回一个整数,该数也可用于计算该文件的数据大小
  5. int fd 需要操作的文件(文件描述符)
  6. off_t offset 光标偏移值
  7. int whence 如下
  8. SEEK_SET
  9. The offset is set to offset bytes.
  10. 偏移量设置为偏移字节。
  11. SEEK_CUR
  12. The offset is set to its current location plus offset bytes.
  13. 偏移量设置为其当前位置加上偏移量字节。
  14. SEEK_END
  15. The offset is set to the size of the file plus offset bytes.
  16. 偏移量设置为文件大小加上偏移字节。
  1. lseek(fd,0,SEEK_SET);
  2. 将光标放在该文件内数据的头
  3. lseek(fd,0.SEEK_END);
  4. 将光标放在该文件内数据的尾部
  5. lseek(fd,+n/-n,SEEK_CUR);
  6. 将光标向 左/右 偏移n个字节位置

获取文件指针当前位置:int len = lseek(fd, 0, SEEK_CUR);
获取文件长度:int len = lseek(fd, 0, SEEK_END);


文件描述符

ls -l

文件权限

可读       r    4

可写      w    2

可执行   x    1

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

闽ICP备14008679号