Hi,
is it possible to move a file instead of copy it?
The file I downloaded is huge ( > 4 GB). When the job is finished the file will be copied.
But it takes too long.
Is it possible to do something like File.Move(Job.GetInputStream, out)?
Or can I change the Temp File Location before I start the download process?
Thanks,
Coyote
is it possible to move a file instead of copy it?
The file I downloaded is huge ( > 4 GB). When the job is finished the file will be copied.
But it takes too long.
B4X:
Dim out AsOutputStream = File.OpenOutput(...) 'target folder
File.Copy2(Job.GetInputStream, out)
out.Close
Is it possible to do something like File.Move(Job.GetInputStream, out)?
Or can I change the Temp File Location before I start the download process?
Thanks,
Coyote