Upload and download directly - no waiting
I would like to program something where you download the file from one side and the other can download it at the time of download. I knew such a service, but I do not remember the name. If you know a service that I would like to know, if it is no longer there, I would program it as an open source project.
And it should be a website
source to share
You might be able to achieve this by loading it through a native ISAPI filter (if you are using IIS) - all CGI implementations will not start running your script until the request is complete, which makes sense since you havenβt given all the values ββyet. I would suggest that ISAPI might be wrong too.
So, your next best bet is to write a custom HTTP server that can handle serving files even before the download is complete.
source to share