I connect my tablet to my PC using a USB cable and place a file into it. Now I want to access that file. I read this http://stackoverflow.com/questions/18383055/android-where-are-downloaded-files-saved on the net but cannot convert the java code to basic4android. I also seen some threads on this forum on how to access this folder but I can't get to the file. Here is my last iteration of code.
If File.Exists(File.Combine(File.DirRootExternal, "Download"), "Miniature Inventory.csv") Then
Msgbox("I am here","")
Else
Msgbox("File does not exist in the Download directory", "Battling Napoleon")
End If
I always wind up in the second Msgbox.
I also want to copy the file to File.DirInternalCache
Thanks in advance for any help.
If File.Exists(File.Combine(File.DirRootExternal, "Download"), "Miniature Inventory.csv") Then
Msgbox("I am here","")
Else
Msgbox("File does not exist in the Download directory", "Battling Napoleon")
End If
I always wind up in the second Msgbox.
I also want to copy the file to File.DirInternalCache
Thanks in advance for any help.