如何在shell脚本中检查目录是否存在?

时间:2014-02-27 10:46:48

标签: unix

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

1 个答案:

答案 0 :(得分:1)

if [ -d "/path/to/dir" ]
then
      echo "Directory /path/to/dir exists."
else
      echo "Error: Directory /path/to/dir does not exists."
fi