如何检查/ system / app文件夹中是否存在应用程序?

时间:2012-03-23 11:12:56

标签: android

我想检查系统应用程序文件夹中是否存在特定的apk。我怎么能这样做?

1 个答案:

答案 0 :(得分:3)

你可以利用Java File API:

new File("/system/app/myFile.apk").exists();

祝福, 添