I am trying to create folder in Android internal storage. For that I am using below code
val path = File(getExternalFilesDir(null),"MyFolder")
But it is creating folder in Android directory inside app package name under files directory like this: Android/data/com.app.myapp/files/MyFolder. I don't want to create folder like this rather I want to create folder in internal storage like WhatsApp creates.
How can I do this?