1

Possible Duplicate:
Boost.ASIO-based HTTP client library (like libcurl)

Does Boost C++ have a namespace/library that downloads a file via HTTP or FTP? I am writting an application that will download an XML file.

The application needs to work on Windows XP and up which is why I am looking at Boost C++ because of portability and speed of development.

If Boost doesn't have a download library, do you know of a library that can download a file and is Cross Windows Version compatible?

Community
  • 1
  • 1
sazr
  • 24,984
  • 66
  • 194
  • 362

1 Answers1

2

Boost.Asio may be what you want.

There is another good C++ Library named C++ Poco, which also provides HTTP/FTP download functionality.

johnsyweb
  • 136,902
  • 23
  • 188
  • 247