Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to password protect my local phone directory folder This folder (directory) has been created by my application at run time with password protection. My application can open this folder and used for self. Any one can't open this folder manually. It is possible in android.

Thanks in advance.

share|improve this question
Improve your accept rate. – Lawrence Choy Jan 10 at 9:58
A tip, your 0% accept rate doesn't really encourage long answers. – dutt Jan 10 at 9:58

1 Answer

This is not possible on Android.

You could create your folder on the internal memory, so that only your app can access it on normal devices. However, anyone with a rooted device will be able to browse your folder using a file manager, and other apps will also be able to read its contents if given root access.

A folder on the external storage is accessible to all apps with the READ_EXTERNAL_STORAGE permission, so you'll want to avoid using that.

At any rate, there is no 100% effective way to secure your folder such that only your app can access it.

However, you could try encrypting your data. This is what many apps like whatsapp do. Even when Whatsapp backs up the chats to the external storage, it is AES encrypted so that while others can access the data, they can't read it without decrypting it first. I would recommend that your try encryption

share|improve this answer
ok. but if i am downloading epub file in my local dir .any one can share this.if it is downloading in application file dir.application file dir has limited size .what should i do in this case. – Pradeep Sharma Jan 11 at 9:07
If you are downloading a big file, or many small or big files, I'd recommend you save them onto the external storage and use encryption to protect them, as on most device internal storage is very limited, and your app is highly likely to be uninstalled if you're using too much of it. – Raghav Sood Jan 11 at 9:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.