Android mkdir not making folder
Does the /mnt/sdcard/tallgrass/
directory exist? (I'm guessing not, but you never know.)
The File.mkdirs()
method will create all needed directories; mkdir()
will only create the last directory in the pathname.
Does the /mnt/sdcard/tallgrass/
directory exist? (I'm guessing not, but you never know.)
The File.mkdirs()
method will create all needed directories; mkdir()
will only create the last directory in the pathname.