Skip to content

使用libcurl下载ftp服务器上的文件

Notifications You must be signed in to change notification settings

wfYue0808/ftpdownload

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ftpdownload

最开始用的curlftpfs直接挂载ftp服务器目录,虽然操作简单了,但是会有一些问题:

  • 偶尔挂载目录不能访问或者执行df -h时shell卡死
  • 如果有同一个文件需要多次读取的话,每次读取其实相当于把文件再次下载下来

所以还是老老实实写代码把服务器文件下载到本地吧。

Example Usage

project path is /root/ftpdownload

  • build

    $ cd /root/ftpdownload
    $ mkdir build
    $ cd build
    $ cmake ..
    $ make
  • conf

    $ cat /root/ftpdownload/conf/example.conf
    src_dir=ftp://[ip]/[dir]/
    dst_dir=[dir]
    user_pwd=[user]:[password]
    sleep_time=300
  • execute

    $ cd /root/ftpdownload/build
    $ ./ftpdownload /root/ftpdownload/conf/example.conf

About

使用libcurl下载ftp服务器上的文件

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 97.7%
  • CMake 2.3%