I am able to successfully copy and load a image using the file object in windows using:
FileSelReturn$( "File" ) Apppath$ + "PictureCopy.jpg"
I want to place a copy of a file in a folder easily accessible to the user on android. I would like to keep my existing code using the file object, it says the file object is compatible with android.
FileSelReturn$( "File" ) ExternalStorageDirectory$( "Android object" ) + "M/PictureCopy.jpg"
does not work.
I don't see the folder "m" in external storage?
How do I create a folder? or is there something else I am missing?