B4X:
Sub chooser_Result (Success As Boolean, Dir As String, FileName As String)
if Success then
Dim Dir1 As String = rp.GetSafeDirDefaultExternal("")
Dim bg As Bitmap = LoadBitmapResize(Dir, FileName, Activity.Width, Activity.Height ,True)
File.Copy(Dir,FileName,Dir1, FileName) ------ this line is throwing the error
i get following error
java.io.FileNotFoundException: /storage/emulated/0/Android/data/newkot.com/files/content:/media/external/images/media/34540 (No such file or directory)
Android version 7 samsung j7 max
b4a 7.3 sdk 23
i have included following in mainfest
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
need help please.