Skip to content Skip to sidebar Skip to footer

Curle_partial_file Error For Large Files With Libcurl

I have linked libcurl library (v7.38.0) statically with my C++ application. Using curl, we upload & download files to/from server https. I Have download fails with the error

Solution 1:

CURLE_PARTIAL_FILE means that the transfer was aborted before the full contents arrived. That typically means a bad server or a network problem, not a client-side problem.

If you cannot affect the network or server conditions, you probably need to consider ignoring this particular error.

Post a Comment for "Curle_partial_file Error For Large Files With Libcurl"