Android Mkdir Not Making Folder
Answer :
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.
Comments
Post a Comment