adb判断文件是否存在
时间: 2023-08-06 10:07:03 浏览: 389
检查文件是否存在
您可以使用以下命令来判断 Android 设备上的文件是否存在:
```
adb shell ls /path/to/file
```
如果文件存在,将返回文件名,否则将返回 `No such file or directory` 的错误信息。您可以将此命令与其他命令组合使用,例如:
```
adb shell if [ -e /path/to/file ]; then echo "File exists"; else echo "File does not exist"; fi
```
此命令将在文件存在时输出 `File exists`,否则输出 `File does not exist`。
阅读全文