linux判断文件是否存在
时间: 2023-04-29 09:04:42 浏览: 76
linux下判断文件和目录是否存在的方法(总结)
5星 · 资源好评率100%
可以使用命令行工具 `test` 或 `[` 来判断文件是否存在。
示例:
```
test -e /path/to/file
```
或
```
[ -e /path/to/file ]
```
如果文件存在,返回值为 0;不存在时,返回值为 1。
另外还有 stat, ls, find 等命令都可以用来检查文件是否存在, 这里就不多做说明.
阅读全文