Any tips where should i start? does c/c++ has a built-in file downloader functions?? any tips would be a great help!! its been a day compiling the psptoolchain and atlast, i do make it work now thanks for some of you who helped me.
I really wanna code a simple homebrew that can download file over the net..
maybe similar to this code for c#
Code: Select all
DownloadURLCollection urls = new DownloadURLCollection();
urls.Add(new DownloadURL("http://www.codeproject.com/cs/internet/
CoolDownloader/CoolDownloader_demo.zip",
@"C:\Temp"));
urls.Add(new DownloadURL("http://releases.mozilla.org/pub/mozilla.org/
firefox/releases/1.5.0.6/win32/en-US/Firefox Setup 1.5.0.6.exe",
@"C:\Temp\newname.zip"));
FileDownloaderForm downloader = new FileDownloaderForm(urls);
downloader.ShowDialog();
sorry for my bad english