Samet
Samet

Reputation: 917

How to check if an application is present in /system/app folder?

I want to check if a specific apk is present in system app folder. How can I do that?

Upvotes: 0

Views: 454

Answers (1)

Tim
Tim

Reputation: 6712

you could just utilize the Java File API for that:

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

Best wishes, Tim

Upvotes: 3

Related Questions