tsteward Well-Known Member Licensed User Longtime User Oct 9, 2013 #1 I want to download a file from a pre defined url and save it to DirDefaultExternal. I have read so many posts now i'm just confused. File is only a small DB. Any help appreciated
I want to download a file from a pre defined url and save it to DirDefaultExternal. I have read so many posts now i'm just confused. File is only a small DB. Any help appreciated
Erel B4X founder Staff member Licensed User Longtime User Oct 9, 2013 #2 You should use HttpUtils2 to download the file. Then in JobDone you should copy it with File.Copy2(Job.GetInputStream, Out). Upvote 0
You should use HttpUtils2 to download the file. Then in JobDone you should copy it with File.Copy2(Job.GetInputStream, Out).
Devv Active Member Licensed User Longtime User Mar 4, 2015 #3 Erel said: You should use HttpUtils2 to download the file. Then in JobDone you should copy it with File.Copy2(Job.GetInputStream, Out). Click to expand... how could i get the percentage completed from HttpUtils2 download ? Upvote 0
Erel said: You should use HttpUtils2 to download the file. Then in JobDone you should copy it with File.Copy2(Job.GetInputStream, Out). Click to expand... how could i get the percentage completed from HttpUtils2 download ?
DonManfred Expert Licensed User Longtime User Mar 4, 2015 #4 Devv said: how could i get the percentage completed from HttpUtils2 download ? Click to expand... see answer from wonder here. Upvote 0
Devv said: how could i get the percentage completed from HttpUtils2 download ? Click to expand... see answer from wonder here.