Hi There
I am trying to use httputils2 to download a file, then use the corresponding intent to open the file
Call issued to download file
Job returns success
But if I try to locate the file using the code below I cannot
Can someone tell me what I am doing wrong in here
Thanks in advance
I am trying to use httputils2 to download a file, then use the corresponding intent to open the file
B4X:
Sub Service_Create
TempFolder = File.DirInternalCache
hc.Initialize("hc")
TaskIdToJob.Initialize
End Sub
Call issued to download file
B4X:
Job.Download("http://www.b4x.com/forum/images/categories/android.png")
Job returns success
But if I try to locate the file using the code below I cannot
B4X:
If File.Exists(File.DirInternalCache, "android.png") = True Then
Can someone tell me what I am doing wrong in here
Thanks in advance