目录
可以通过以下脚本命令来判断设备文件是否存在
- #!/bin/sh
-
- if [ -c "/dev/ttySTM2" ]; then
-
- echo "ttySTM2 is exist"
-
- else
-
- echo "ttySTM2 not exist"
-
- fi
或
-
- if [ -c /dev/ttySTM2 ]; then
-
- echo "ttySTM2 is exist"
-
- else
-
- echo "ttySTM2 not exist"
-
- fi
文件类型或者设备类型相对应的判断条件
* -b file = True if the file exists and is block special file. 如果该文件存在并且是块特殊文件。
* -c file = True if the file exists and is character special file.如果该文件存在并且是字符特殊文件
* -d file = True if the file exists and is a directory. 如果该文件存在并且是一个目录。
* -e file = True if the file exists. 如果该文件存在
* -f file = True if the file exists and is a regular file 如果该文件存在并且是一个普通文件
* -g file = True if the file exists and the set-group-id bit is set. 如果该文件存在并且设置了组ID位。
* -k file = True if the files’ “sticky” bit is set. 如果文件的sticky “粘性”位被设置。
* -L file = True if the file exists and is a symbolic link. 该文件存在并且是一个符号链接。
* -p file = True if the file exists and is a named pipe. 该文件存在并且是一个命名管道。
* -r file = True if the file exists and is readable. 文件存在并且是可读的
* -s file = True if the file exists and its size is greater than zero. 文件存在,它的大小是大于零
* -S file = True if the file exists and is a socket. 文件存在并且是一个套接字
* -t fd = True if the file descriptor is opened on a terminal. 文件描述符是在一个终端上打开的
* -u file = True if the file exists and its set-user-id bit is set. 文件存在,它的设置用户ID位被设置了
* -w file = True if the file exists and is writable. 文件存在并且可写
* -x file = True if the file exists and is executable. 文件存在并且是可执行的
* -O file = True if the file exists and is owned by the effective user id. 文件存在并且是所拥有的有效用户ID
* -G file = True if the file exists and is owned by the effective group id. 文件存在并且拥有有效的gruop id。
#include
int access(const char *pathname, int mode);
filename:可以填写文件夹路径或者文件路径
mode
mode 含义
0 (F_OK) 只判断是否存在
2 (R_OK) 判断写入权限
4 (W_OK) 判断读取权限
6 (X_OK) 判断执行权限
返回值
若存在或者具有权限,返回值为0;不存在或者无权限,返回值为-1。
错误代码
代码 含义
EACCESS 参数pathname 所指定的文件不符合所要求测试的权限
EROFS 欲测试写入权限的文件存在于只读文件系统内
EFAULT 参数pathname指针超出可存取内存空间
EINVAL 参数mode 不正确
ENAMETOOLONG 参数pathname太长
ENOTDIR 参数pathname为一目录
ENOMEM 核心内存不足
ELOOP 参数pathname有过多符号连接问题
EIO I/O 存取错误
特别提醒:使用access()作用户认证方面的判断要特别小心,例如在access()后再做open()的空文件可能会造成系统安全上的问题。
- #define dev_fn "/dev/ttySTM2"
-
-
- int panduan=access(dev_fn,0);
-
- if(panduan!=-1)
- {
- printf("dev_fn exit");
- }
- else
- {
- printf("dev_fn not exit");
- }