With these instructions I upload a file :
With these others I check if the file has actually been sent on the web :
The question is : in point "XXX" can I be 1000% sure that the whole file - I repeat: the whole file - has been totally downloaded ?
Or, to be absolutely certain, should I download and verify the exact correspondence between the two files, the one sent on the internet and the one received from the internet ?
Thank in advance
B4X:
Dim HttpClient1 As HttpJob
If Not(HttpClient1.IsInitialized) Then HttpClient1.Initialize("HttpClient1",Me)
HttpClient1.PostFile("https://NameSite,NameFolder,NameFile)
B4X:
Sub JobDone (Job As HttpJob)
If Job.Success = True Then
Select Job.JobName
Case "HttpClient1"
'--- XXX
Or, to be absolutely certain, should I download and verify the exact correspondence between the two files, the one sent on the internet and the one received from the internet ?
Thank in advance