使用ftplib 下載文件

#include <stdio.h>
#include "ftplib.h"


netbuf  *con = NULL;


static int process(netbuf *nControl, fsz_t xfered, void *arg)
{
//    struct REMFILE *f = (struct REMFILE* )arg;


//    if(f->fsz)
//    {
//        double pct = (xfered*100.0)/f->fsz;
//        printf("%s  %f :%% \n", f->fnm, pct, xfered);
//    }


    return 1;
}


int main(void)
{
    //鏈接
    if(!FtpConnect("192.168.1.220", &con))
    {
        printf("connect failed!!\n");
        return 0;
    }


    //登錄
    if(!FtpLogin("anonymous", "Email", con))
    {
        printf("login failed!\n");
        FtpClose(&con);


        return 0;
    }


//    FtpClearCallback(con);


//    struct REMFILE rem;
//    rem.next = NULL;
// rem.fnm = fnm;
// rem.fsz = fsz;




//    FtpCallbackOptions opt;
//    opt.cbFunc = process;
//    opt.cbArg = &rem;
//    opt.idleTime = 1000;
//    opt.bytesXferred = fsz;
//    FtpSetCallback(&opt,con);


   // FtpOptions(FTPLIB_CALLBACK, (long) NULL, con);


    if(FtpGet("./110.jpg", "./110.jpg", 'I', con))//第一個參數爲本地,第二個爲服務器
    {
        printf("success!!!");
    }
    else
    {
       printf("failed!!!\n");
    }
    //FtpMkdir("FTP", conn);


    FtpClose(con);


    return 0;
}

發佈了70 篇原創文章 · 獲贊 11 · 訪問量 22萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章