I am trying to create a directory in the internal storage into an Android device using the following code but it seems like I am missing something. The directory is not showing in the internal storage. I have tried this code:
File testDir = DirectoryTestActivity.this.getDir("Test", Context.MODE_PRIVATE);
if (!testDir.exists())
{
testDir.mkdirs();
}