<How to create a new folder in android?> I want to...
# stackoverflow
u
How to create a new folder in android? I want to create a new folder in external storage. I use this code: val folderMain = "name" val f = File(getExternalStorageDirectory(), folderMain) if (!f.exists()) { f.mkdirs() } After execute it works and create a new folder in internal storage not in external storage. How can i Create a new folder in External storage? I am 100% sure i have external storage in my device and Its have 14 GB space available in it and location is:...