我試圖使用FTP下載文件,如果連接終止,那麼它應該從停止的地方恢復。我的問題是,如果我關閉連接然後重新連接它,使用下面的代碼段能夠繼續下載,但如果我在服務器站點這樣做,那麼我無法恢復下載,並且程序進入無限狀態。如何通過C使用Curl恢復文件下載?
#include <stdio.h>
#include <curl/curl.h>
/*
* This is an example showing how to get a single file from an FTP server.
* It delays the actual destination file creation until the first write
* callback so that it won't create an empty file in case the remote file
* doesn't exist or something else fails.
*/
struct FtpFile {
const char *filename;
FILE *stream;
};
static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream)
{
struct FtpFile *out=(struct FtpFile *)stream;
if(out && !out->stream) {
/* open file for writing */
out->stream=fopen(out->filename, "wb");
if(!out->stream)
return -1; /* failure, can't open file to write */
}
return fwrite(buffer, size, nmemb, out->stream);
}
int main(void)
{
CURL *curl;
CURLcode res;
struct FtpFile ftpfile={
"dev.zip", /* name to store the file as if succesful */
NULL
};
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if(curl) {
/*
* You better replace the URL with one that works!
*/
curl_easy_setopt(curl, CURLOPT_URL,
"ftp://root:[email protected].1/dev.zip");
/* Define our callback to get called when there's data to be written */
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_fwrite);
/* Set a pointer to our struct to pass to the callback */
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ftpfile);
/* Switch on full protocol/debug output */
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
if(CURLE_OK != res) {
/* we failed */
fprintf(stderr, "curl told us %d\n", res);
}
}
if(ftpfile.stream)
fclose(ftpfile.stream); /* close the local file */
curl_global_cleanup();
return 0;
}
任何人都可以告訴我,如果遠程站點關閉連接,我該如何恢復下載。 任何幫助,將不勝感激
感謝,
Yuvi
有沒有像HTTP的'AddRange'在ftp? – 2012-02-23 10:39:33
是的,它是存在的,但我的問題是,如果連接已關閉,我無法捕獲錯誤,要知道更多,你可以在這裏檢查它http://curl.haxx.se/libcurl/c/ftpuploadresume.html謝謝 – Yuvi 2012-02-23 11:03:44