shell 判断目录是否已经存在
时间: 2023-05-18 17:02:50 浏览: 90
shell判断文件,目录是否存在或者具有权限的代码
可以使用以下命令来判断目录是否已经存在:
if [ -d "/path/to/directory" ]; then
echo "Directory exists."
else
echo "Directory does not exist."
fi
其中,/path/to/directory 是要判断的目录路径。如果目录存在,则会输出 "Directory exists.",否则输出 "Directory does not exist."。
阅读全文