downloading huge files
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Can I download a file (like DirectX SDK) in chunks using CInternetSession/CHttpFile ? I built a program that downloads a whole file using CInternetSession/CHttpFile, but I can't do that whith huge files in just one session in dial-up connection. When I use CHttpFile::Seek(), the method returns immediately, but the subsequent CHttpFile::Read() takes as much time as reading from the beggining of the file. If not, is there another way to do it programmatically ?