Click here to Skip to main content
Click here to Skip to main content

A class to download files from the net

By , 16 Apr 2002
 

Sample Image - WebGrab.gif

CWebGrab is a simple class that allows you to quickly and easily download files from the net. The class is merely a light wrapper for the MFC internet classes, and as such supports any protocol that the MFC classes support.

The class is extremely simple to use and has only one main function that you need to call: CWebGrab::GetFile. The syntax is:

BOOL GetFile(LPCTSTR szURL, CString& strBuffer, 
             LPCTSTR szAgentName = NULL, CWnd* pWnd = NULL);

Downloads a file from the given URL

  • szURL is the URL
  • strBuffer is a CString buffer that will hold the contents of the downloaded file
  • szAgentName is the agent name you want to send to the website (may be NULL)
  • pWnd is a status window. Status updates will be sent to this window using SetWindowText()
BOOL GetFileInfo(LPCTSTR  szURL, CString& strLastModified, DWORD& dwSize,
                 DWORD& dwServerError, LPCTSTR szAgentName = NULL, 
                 CWnd* pWnd = NULL);

(Added by Ravi Bhavnani) Retrieves the information about a file from the given URL

  • szURL is the URL
  • strLastModified is a CString buffer that will hold the last modified date of the file
  • dwServerError will return any error codes that were raised.
  • szAgentName is the agent name you want to send to the website (may be NULL)
  • pWnd is a status window. Status updates will be sent to this window using SetWindowText()

Bryce Burrows kindly updated the code to include the following functions:

void SetUseProxy(bool use);

Sets whether or not to use a proxy

void SetProxyServer(LPCSTR server);

Sets the proxy server

void SetProxyPort(UINT port);

Sets the proxy port

void SetProxy(LPCSTR proxy, WORD port, bool use=true);

Sets the proxy information in one call

void SetForceReload (bool bForceReload)

Sets whether or not to force a reload when downloading a document. If a force reload is set the the document will not be a cached version.

void GetForceReload()

Gets whether or not to force a reload when downloading a document.

void SetTimeOut(DWORD timeOut);

Sets the timeout for the operation

double GetRate();

Retrieves the download rate in Kb/sec

SHORT GetErrorCode();
CString GetErrorMessage();

Get the error code and message (if any)

Example of use

#include "webgrab.h"

void CWebGrabberDlg::OnDownload() 
{
    CString strBuffer;
    CWebGrab grab;
    if (grab.GetFile("http://www.mysite.com/index.htm", // the url
                     strBuffer,                         // buffer for data
                     _T("WebGrab demo"),                // agent name
                     GetDlgItem(IDC_STATUS)))           // Plain ol' CStatic window
    {
        TRACE0("everything went OK\n")
    }
}

History

26 Jan 2002 - Bryce Burrows kindly added the proxy code.

16 Feb 2002 - Bryce Burrows source code update.

2 Mar 2002 - Ravi Bhavnani added a "force reload" option to ensure that the downloaded data is not read from the cache, plus Get/SetForceReload() functions.

17 Apr 2002 - Ravi Bhavnani added a GetFileInfo

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Chris Maunder
Founder CodeProject
Canada Canada
Member
Chris is the Co-founder, Administrator, Architect, Chief Editor and Shameless Hack who wrote and runs The Code Project. He's been programming since 1988 while pretending to be, in various guises, an astrophysicist, mathematician, physicist, hydrologist, geomorphologist, defence intelligence researcher and then, when all that got a bit rough on the nerves, a web developer. He is a Microsoft Visual C++ MVP both globally and for Canada locally.
 
His programming experience includes C/C++, C#, SQL, MFC, ASP, ASP.NET, and far, far too much FORTRAN. He has worked on PocketPCs, AIX mainframes, Sun workstations, and a CRAY YMP C90 behemoth but finds notebooks take up less desk space.
 
He dodges, he weaves, and he never gets enough sleep. He is kind to small animals.
 
Chris was born and bred in Australia but splits his time between Toronto and Melbourne, depending on the weather. For relaxation he is into road cycling, snowboarding, rock climbing, and storm chasing.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionPOST instead of GETmember.dan.g.5 Feb '12 - 17:27 
QuestionProblem with filesmembervantomas12 Aug '11 - 4:08 
Generalsame code in "pure c++" (non-MFC)membermimosa10 Jun '11 - 21:27 
Hi
I want to do the same but in a portable code, non-MFC. Can it be done? I found a "curl" and "curlpp" library on the net, but the documentation is extremely poor.. you want to kill yourself trying to compile or use this curlpp library.
 
Any painless method to grab url without MFC? Thanks.
Mat Suspicious | :suss:

QuestionHow to grab an html file generated with embebded javascript?membermimosa7 Aug '10 - 10:56 
GeneralWhere are downloaded filesmembernicolla100331 Jul '10 - 7:35 
Generaltype filesmemberbarhouming9 Jul '10 - 0:54 
QuestionHow can I write to the net?memberDanYELL14 Feb '09 - 15:32 
GeneralQuestion about WebGrab...memberLilMoke25 Nov '08 - 5:13 
GeneralWebGrab with SSL and Invalid CertificatememberDoug Knudson15 Oct '07 - 3:15 
GeneralRe: WebGrab with SSL and Invalid CertificatememberLery7817 Apr '08 - 11:59 
GeneralProblems [modified]memberAtridas16 Feb '07 - 9:09 
GeneralRe: Problemsmembereffem22 Feb '07 - 0:57 
Questionproxy ?membereffem16 Feb '07 - 1:36 
AnswerRe: proxy ?memberA duley31 Aug '07 - 7:02 
GeneralHTTP AuthenticationmemberPriyank Bolia3 Mar '06 - 2:47 
GeneralBUG: Unicode is not supported, wrong buffer sizememberAlex_Raider28 Feb '06 - 22:19 
GeneralRe: BUG: Unicode is not supported, wrong buffer sizememberSandro7819 Jun '08 - 4:01 
GeneralProxy Not workingmembersrivathsan.a9 Jan '06 - 20:45 
GeneralhttpsmemberOrxorand21 Nov '05 - 0:50 
GeneralAnother buggiememberdchris_med29 Oct '05 - 11:06 
GeneralConnect Timout Failed !!! Hung my machine !membersonawane ajay23 Mar '05 - 0:36 
GeneralProblem with setting timeoutmemberPetoG15 Dec '04 - 0:02 
Generaluse in pocketPCmemberchupas228 Nov '04 - 23:32 
GeneralA Bug and and how to fix it!memberEhsan-de-Burge28 Aug '04 - 20:50 
GeneralCookiesmemberOrxorand4 Apr '04 - 23:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 17 Apr 2002
Article Copyright 1999 by Chris Maunder
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid