0

How can I Create a folder in the internal memory of android device not on SD card with code?Do I need any permission to be set in Manifest ? I want to create a text file in that directory and save data to that text file?

Cartoon
  • 35
  • 2
  • 4
    Possible duplicate of [Android create folders in Internal Memory](http://stackoverflow.com/questions/8124612/android-create-folders-in-internal-memory) – Abhinav Singh Maurya Jan 06 '16 at 05:21

1 Answers1

0

See what the Google docs says here:

You don’t need any permissions to save files on the internal storage. Your application always has permission to read and write files in its internal storage directory.

https://developer.android.com/training/basics/data-storage/files.html

halfer
  • 19,824
  • 17
  • 99
  • 186
erluxman
  • 18,155
  • 20
  • 92
  • 126
  • Can You give Android code to create a Folder in the internal memory coz am new and With File??? – Cartoon Jan 06 '16 at 05:53
  • i hope this will help you http://stackoverflow.com/questions/8124612/android-create-folders-in-internal-memory – erluxman Jan 06 '16 at 09:12