当前位置:   article > 正文

Linux C 编程 —— fcntl、ioctl和stat区别_linux c stat函数

linux c stat函数

1、 fcntl

  1. #include <unistd.h>
  2. #include <fcntl.h>
  3. int fcntl(int fd, int cmd, ... /* arg */ );

fcntl函数可以改变某进程中一个已打开的文件的属性,可以重新设置读、写、追加、非阻塞等标志(这些标志称为File Status Flag),而不必重新open文件。

通过fcntl设置的都是当前进程如何访问设备或文件的访问控制属性,例如读、写、追加、非阻塞、加锁   等,但并不设置文件或设备本身的属性,例如文件的读写权限、串口波特率等。

2、ioctl

  1. #include <sys/ioctl.h>
  2. int ioctl(int d, int request, ...);

ioctl函数用于设置某些设备本身的属性,例如串口波特率、终端窗口大小。

此函数一般用于底层驱动开发

3、 stat系列

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <unistd.h>
  4. int stat(const char *pathname, struct stat *buf);
  5. int fstat(int fd, struct stat *buf);
  6. int lstat(const char *pathname, struct stat *buf);
  7. #include <fcntl.h> /* Definition of AT_* constants */
  8. #include <sys/stat.h>
  9. int fstatat(int dirfd, const char *pathname, struct stat *buf,
  10. int flags);

stat系列也是对文件属性本身的修改,文件可以打开也可以不打开,主要针对各种文件和目录等,而ioctl主要是针对IO设备。
 

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

闽ICP备14008679号