Click here to Skip to main content
Licence 
First Posted 25 Oct 2002
Views 124,064
Bookmarked 58 times

Download a File Using URLDownloadToCacheFile

By | 25 Oct 2002 | Article
A sample to demonstrate how to use URLDownloadToCacheFile and IBindStatusCallback.

Download

Introduction

You can use WinInet to download a file from the Internet. But the easier way is to use the ::URLDownloadToCacheFile() or ::URLDownloadToFile() functions. The URL functions combine the capabilities of asynchronous monikers and URL monikers into easy-to-use functions. By using these functions, you do not have to worry about the protocols used to transfer the files, such as HTTP, FTP. In the simplest case, all you have to do is to pass them the URL. ::URLDownloadToCacheFile() downloads data into the Internet cache and returns the file name of the cache location for retrieving the bits. ::URLDownloadToFile() downloads bits from the Internet and saves them to a file. However, they are blocking functions. Even though the data is downloaded asynchronously the functions do not return until all the data is downloaded. You can choose to be notified of progress through a notification callback.

This sample demonstrates how to use the ::URLDownloadToCacheFile() function to download a file from the Internet without blocking the user interface. The use of the ::URLDownloadToFile() function is similar. The sample is an MFC dialog-based application that creates a worker thread to perform the download task.

The user is supposed to enter the URL in the URL edit box and then press the Download button. The CUrlFileDlg::OnOK() will be called since the ID of the Download button is IDOK. The CUrlFileDlg::OnOK() retrieves the URL string from the URL edit box and checks its validity using the ::IsValidURL() function. The second parameter of the ::IsValidURL() function is expected to be of the LPCWSTR type. Here, the T2CW conversion macro is used. For more information about MBCS/Unicode Conversion Macros, see the MFC Technical Note "TN059: Using MFC MBCS/Unicode Conversion Macros". If the URL is valid (but it is not necessarily correct), a worker thread is created by calling ::AfxBeginThread(). The controlling function for the worker thread is a static member function of CUrlFileDlg - CUrlFileDlg::Download(), which calls ::URLDownloadToCacheFile() and posts a user-defined message WM_USER_ENDDOWNLOAD to the dialog box after ::URLDownloadToCacheFile() returns. The message-handler function for WM_USER_ENDDOWNLOAD waits until the worker thread terminates, then deletes the CWinThread object. It also displays the name of the downloaded file. The last parameter of ::URLDownloadToCacheFile() is the address of the caller's IBindStatusCallback interface. ::URLDownloadToCacheFile() calls this interface's IBindStatusCallback::OnProgress() method on a connection activity, including the arrival of data. Implementing IBindStatusCallback::OnProgress() allows a caller to implement a user interface or other progress monitoring functionality. It also allows the download operation to be canceled by returning E_ABORT from the IBindStatusCallback::OnProgress() call. The implementation of the IBindStatusCallback interface is the CBSCallbackImpl class. The CBSCallbackImpl::OnProgress() sends a user-defined message WM_USER_DISPLAYSTATUS to the dialog box to display the progress messages. It also uses the ::WaitForSingleObject() function to check the current state of the event object, which is set to the signaled state when the user has pressed the Stop button (the same button as the Download button) during downloading. If the event object is in the signaled state, the CBSCallbackImpl::OnProgress() returns E_ABORT to cancel the download operation.

Note that the following setting affects the behavior of ::URLDownloadToCacheFile() just like the Internet Explorer browser.

Check Control Panel/Internet/General/Temporary Internet files/Settings/Check for newer versions of stored pages

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Chen Su

Software Developer

Canada Canada

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 [modified] Pinmemberprojectzombie16:47 8 Dec '11  
GeneralRe: My vote of 5 PinmemberChen Su17:05 8 Dec '11  
QuestionCould have been more simple... Pinmembervantomas4:05 12 Aug '11  
GeneralDelete Downloaded File PinmemberRobairbutler22:58 10 Jun '10  
GeneralRe: Delete Downloaded File PinmemberChen Su14:46 11 Jun '10  
GeneralRe: Delete Downloaded File PinmemberRobairbutler1:42 14 Jun '10  
QuestionPause / Resume Pinmemberkhoanguyen18:02 11 Dec '09  
QuestionChange download directory Pinmemberawelch5:46 23 Oct '09  
AnswerRe: Change download directory PinmemberChen Su11:46 23 Oct '09  
QuestionHow to block IE generate temporary files? PinmemberXuefei.Wu17:09 13 Apr '09  
GeneralGood code, not very good article:) Pinmemberzengkun1001:04 12 Jun '08  
Generalpause and resume Pinmembermonsieur_jj20:14 7 May '08  
AnswerRe: pause and resume PinmemberChen Su9:14 8 May '08  
QuestionURLDownloadToCacheFile in Asynchronous mode Pinmembercall4e_friend21:56 21 May '07  
AnswerRe: URLDownloadToCacheFile in Asynchronous mode PinmemberChen Su19:15 22 May '07  
QuestionFile convertion Pinmemberkalaikumar.t23:53 10 Jul '06  
GeneralCommandline with Url PinmemberRhettCawood19:50 10 Jul '06  
GeneralRe: Commandline with Url PinmemberChen Su13:56 13 Jul '06  
GeneralRe: Commandline with Url PinmemberRhettCawood4:18 14 Jul '06  
GeneralVB Version of this downloader PinmemberRhettCawood14:09 10 Jul '06  
GeneralRe: VB Version of this downloader PinmemberChen Su16:32 10 Jul '06  
Questionit do not work on my computer Pinmemberr0dmetal8:05 22 Mar '06  
GeneralAuthentication and URLDownloadToCacheFile PinmemberJohnFx6:29 7 Mar '06  
GeneralCheck the status Wether Connect to the internet or not PinmemberKutti Ra16:07 30 Sep '05  
Weather check status system connect to the internet or not, is yes duration of connected times.
QuestionUsing thru proxy ? Pinmemberdarthmaul4:07 11 May '04  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 26 Oct 2002
Article Copyright 2002 by Chen Su
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid