I want to keep my app required files inside a directory under internal storage. in the previous stage i used externalStorageDirectory to store my data. now i am using the below code to refer my external directory
Environment.getExternalStorageDirectory()+"/mydirectory";
I need an equivalant code to refer my directory in the internal directory, can anybody help me...thanks,
Solution:
getFilesDir()+"/mydirectory";
thanks for all of your suggestion and help.