Reputation: 11
I am new to machine-oriented programming and..
I want to open a website in IE - download the whole content of that site - and save it to a specified temporary file. What is the best way to do this with pure C++? Any suggestions and / or examples? I stumbled over OLE automation. Would that be a good choice?
Sencerely, Konstanze
Upvotes: 1
Views: 1320
Reputation: 11
If you want 'pure' C++ then automation's your best shot.
You could also do this in C++/CLI.
http://msdn.microsoft.com/en-us/library/aa752044(v=vs.85).aspx
Scroll to the bottom for C++ samples.
Also, familiarize yourself with the basic concepts of COM before you move forward.
Upvotes: 1
Reputation: 8145
You are better off:
You should be able to google for the APIs to use (IIRC, something like HttpOpen on windows).
Upvotes: 0