shell判断目录不存在
时间: 2023-08-12 15:02:59 浏览: 433
shell脚本判断文件夹或目录是否存在,不存在则创建新文件夹或目录.sh
5星 · 资源好评率100%
在 shell 中可以使用 test 命令判断目录是否存在。例如:
```
if test -d /path/to/directory; then
echo "Directory exists"
else
echo "Directory does not exist"
fi
```
也可以使用 [-d /path/to/directory] 或 [ -e /path/to/directory] 来判断目录是否存在
```
if [ -d /path/to/directory ]; then
echo "Directory exists"
else
echo "Directory does not exist"
fi
```
```
if [ -e /path/to/directory ]; then
echo "Directory exists"
else
echo "Directory does not exist"
fi
```
阅读全文