I itbank New Member Licensed User Longtime User Nov 29, 2011 #1 If i select image in chooser i cant get this image full path How to get full path? Sub chooser_Result (Success As Boolean, Dir As String, FileName As String) If Success Then ToastMessageShow(Dir, True) Else ToastMessageShow("No image selected", True) 'Activity.Finish End If I get ContentDir, not mnt/sdcard/dcim/... How to get full path? :BangHead:
If i select image in chooser i cant get this image full path How to get full path? Sub chooser_Result (Success As Boolean, Dir As String, FileName As String) If Success Then ToastMessageShow(Dir, True) Else ToastMessageShow("No image selected", True) 'Activity.Finish End If I get ContentDir, not mnt/sdcard/dcim/... How to get full path? :BangHead:
Erel B4X founder Staff member Licensed User Longtime User Nov 30, 2011 #2 The path returned is a virtual path. The image can be stored in a database or in an inaccessible location. If you need to get the image as a file you should use File.Copy and copy it to an accessible location. Upvote 0
The path returned is a virtual path. The image can be stored in a database or in an inaccessible location. If you need to get the image as a file you should use File.Copy and copy it to an accessible location.