I have the following code in my Create section:
However, when the above code block executes, I get this error:
java.io.FileNotFoundException: /storage/emulated/0/Android/data/com.rfresh737.ezholds/files/EZHolds.txt (No such file or directory)
Using file manager I look at my SD card but do not see the com.rfresh737.ezholds folder. I have it defined in as my Package name in my Build Configuration.
I have the file in my IDE Files list and I have an SD card.
Thanks for any help...
B4X:
If File.Exists(File.DirDefaultExternal, "EZHolds.txt") = False Then
File.Copy(File.DirAssets, "EZHolds.txt", File.DirDefaultExternal, "EZHolds.txt")
End If
However, when the above code block executes, I get this error:
java.io.FileNotFoundException: /storage/emulated/0/Android/data/com.rfresh737.ezholds/files/EZHolds.txt (No such file or directory)
Using file manager I look at my SD card but do not see the com.rfresh737.ezholds folder. I have it defined in as my Package name in my Build Configuration.
I have the file in my IDE Files list and I have an SD card.
Thanks for any help...