标签: android
我想检查系统应用程序文件夹中是否存在特定的apk。我怎么能这样做?
答案 0 :(得分:3)
你可以利用Java File API:
new File("/system/app/myFile.apk").exists();
祝福, 添