CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Nov 2006
    Posts
    221

    https file download

    Hi,

    Please tell me how can I download a file using HTTPS in vc++.
    Thanks

  2. #2
    Join Date
    Sep 2005
    Location
    London
    Posts
    208

    Re: https file download

    Quote Originally Posted by sulabh120881 View Post
    Please tell me how can I download a file using HTTPS in vc++.
    Thanks
    Hi sulabh,

    Code:
    URLDownloadToFile(NULL, _T("https://server.com"), _T("c:\\file.dat"), 0, NULL );


    Regards
    Doron Moraz

  3. #3
    Join Date
    Nov 2006
    Posts
    221

    Re: https file download

    Thanks Doron,

    It looks very simple, m just going to use this and will get back with the result.

  4. #4
    Join Date
    Jun 2009
    Posts
    3

    Re: https file download

    Interesting. I wasn't aware of this.

    I have always taken the hard yards and done this through Winsock send() & recv() commands.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured