Reputation: 917
I want to check if a specific apk is present in system app folder. How can I do that?
Upvotes: 0
Views: 454
Reputation: 6712
you could just utilize the Java File API for that:
new File("/system/app/myFile.apk").exists();
Best wishes, Tim
Upvotes: 3