Skip to content Skip to sidebar Skip to footer

How To Create A Folder In The Phone Memory (not Sd Card) In Android?

I tried the following code to implement what I need File direct = new File(Environment.getRootDirectory() + '/YourFolder'); if (!direct.exists()) { if (direct.mkdir()) { Toa

Solution 1:

You can follow this link

Creating Folder in Internal memory

hopefully you are helpful from above link.

Best of luck!

Post a Comment for "How To Create A Folder In The Phone Memory (not Sd Card) In Android?"