Are there any folder lock apps of android which provide api to lock a folder through other application? I need to lock a folder(password protected) containing various types of file(flash,video,text) through my application.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot lock folders in Android.
Folders on internal storage (e.g.,
getFilesDir()) are already “locked” insofar as each application has access to only its files.Folders on external storage cannot be locked — any application, and the user, can read or write as needed (though apps need the
WRITE_EXTERNAL_STORAGEpermission).