关于Unix:如何检查shell脚本中是否存在目录?

How to check if a directory exist, within a shell script?

本问题已经有最佳答案,请猛点这里访问。

在shell脚本中,可以使用什么命令检查目录是否存在?


1
2
3
4
5
6
if [ -d"/path/to/dir" ]
then
      echo"Directory /path/to/dir exists."
else
      echo"Error: Directory /path/to/dir does not exists."
fi