I am unable to get the methods for creating folder in Internal Memory,
i gone through few conversations in Android create folders in Internal Memory and Problem facing in reading file from Internal memory of android. But still i am unable to meet my requirement.
My requirement is , I want to create a folder in Internal Memory, there i want to Store one video.
Thankyou you very much in advance for valuable feedbacks.
try the below
File mydir = context.getDir("users", Context.MODE_PRIVATE); //Creating an internal dir; if (!mydir.exists()) { mydir.mkdirs(); }
2.1m questions
2.1m answers
60 comments
57.0k users