Reputation: 778
Some of the music apps lets users to download songs over internet. But the user can access those files through app only. These files are not visible in folders like downloads/gallery etc. How do they achieve it?
I am assuming storing big files in-app is not a good idea!
Upvotes: 0
Views: 44
Reputation: 419
Create your file in private folder app.
myPath = new File(this.context.getFilesDir(), "nameOfImage");
See more - Android Developers.
Upvotes: 1