如何检查给定目录是否可访问?

时间:2014-12-07 23:16:47

标签: bash directory file-permissions exit-code

我目前正在编写一个脚本,列出目录中的所有特定文件。我需要脚本做的是验证该目录是否可访问。我目前正在使用这段代码:

# variable used to get the file permissions of the given  directory 
perm=$(stat -c %a "$dir_name")

if [ "$perm" != "755" -o "$perm" != "777" ]; then
  echo ERROR: "Directory $dir_name cannot be accessed check permissions"
  echo USAGE: "ass2 <directory>"
  exit 3
fi

这将用于检查它们是否具有那些特定的八进制权限,但我想知道是否有其他方法来检查目录是否可访问,并且如果它不是,则返回错误。< / p>

1 个答案:

答案 0 :(得分:4)

使用Bash条件表达式

在Unix和Linux上,几乎所有东西都是文件......包括目录!如果您不关心执行或写入权限,则可以使用-r测试检查目录是否可读。例如:

# Check if a directory is readable.
mkdir -m 000 /tmp/foo
[[ -r /tmp/foo ]]; echo $?
1

您还可以以类似的方式检查文件是否是可遍历的目录。例如:

# Check if variable is a directory with read and execute bits set.
dir_name=/tmp/bar
mkdir -m 555 "$dir_name"
if [[ -d "$dir_name" ]] && [[ -r "$dir_name" ]] && [[ -x "$dir_name" ]]; then
    : # do something with the directory
fi

您可以根据需要使条件变得简单或复杂,但您不必比较八进制或解析 stat 只是为了检查权限。 Bash条件可以直接完成这项工作。