adb判断文件是否存在
时间: 2023-08-06 18:07:55 浏览: 104
检查文件是否存在
可以使用adb shell命令配合测试命令来判断文件是否存在,具体的命令如下:
```adb shell test -e /path/to/file && echo "File exists" || echo "File does not exist"```
其中,/path/to/file是需要判断的文件路径。如果文件存在,则输出“File exists”,否则输出“File does not exist”。
阅读全文