Android Question LargeFileDownload - were are the files store?

Domingo Garcia

Member
Licensed User
I installed the LargeFileDownload app and tested it with a 972K file (very fast download).
How can I find where is the file I downloaded?
What directory is it stored to. Can I copy it to my app directory.
And where in the android file system are the B4A app installed. I have a rooted phone and I cant find the app or the download file anywhere.
Thanks.
 

Jeffrey Cameron

Well-Known Member
Licensed User
Longtime User
I haven't actually run the example, but looking at the service it appears to use File.DirInternalCache, from the HttpUtils2Service.bas file:
B4X:
Sub Service_Create
    TempFolder = File.DirInternalCache
    hc.Initialize("hc")
    TaskIdToJob.Initialize
End Sub

Add a log statement there to log the "TempFolder" variable and see where that goes on your device.
 
Upvote 0
Top