网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > DELPHI > 正文
用idftp遍历整个FTP目录—下载、删除
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/12
下载{$ArticleTitle}原创论文样式

这两天做一个项目,其中需要用ftp下载服务器上的整个目录,并且下载完成后,删除整个目录。由于ftp不能穿透子目录,只能在当前目录下操作,所以用一般的方法根本无法达到预期效果。可能我想偷懒吧!于是想从网上搜搜,看有没有现成的东东拿来使用 :)

结果令我非常失望,不是无法运行就是达不到我的预期效果。其实论坛上也有人问过这样的问题,可一直也没有满意的结果。哎!还得靠自己呀!小日本可没有那么听话,不知道大家听没听说钓鱼岛,去没去参加游行。

       下面的程序是用delphi7.0 + idftp 实现的。可能还会有bug,不过希望能给需要他的人带来一点点帮助和提示!,程序中只有下载与删除的代码,至于上传的code自己写吧,稍微思考一下就可以实现。

unit unit1;

 

interface

 

uses

  windows, messages, sysutils, variants, classes, graphics, controls, forms,

  dialogs, stdctrls, idbasecomponent, idcomponent, idtcpconnection,idftplist,

  idtcpclient, idftp ;

 

type

  tform1 = class(tform)

    btt_downloaddir: tbutton;

    idftp1: tidftp;

    btt_deletedir: tbutton;

    label1: tlabel;

    lb_num: tlabel; //处理文件个数提示。

    procedure btt_downloaddirclick(sender: tobject);

    procedure btt_deletedirclick(sender: tobject);

  private

    { private declarations }

  public

    { public declarations }

  end;

var

  form1: tform1;

implementation
 

{$r *.dfm}
 
{ 下载整个目录,并遍历所有子目录

  首先 changedir(root) 到根目录

  然后创建本地目录 + remotedir

  然后用 list 得到所有目录名
 
  循环判断,进入 remotedir 目录内部

  如果是目录继续第归。否则 get 该文件到本地目录,当 get 完所有文件后返回上一级目录

  用list再取得信息,继续循环

 }
 

procedure ftp_downloaddir(var idftp : tidftp;remotedir,localdir : string);

label files ;

var

  i,dircount : integer;

begin

  if not directoryexists(localdir + remotedir) then

    forcedirectories(localdir + remotedir);

  idftp.changedir(remotedir);

  idftp.list(nil);

  dircount := idftp.directorylisting.count ;

  if dircount = 0 then

  begin

    idftp.changedirup;

    idftp.list(nil);

  end;

  for i := 0 to dircount - 1 do

  begin

    if dircount <> idftp.directorylisting.count then

    begin

      repeat

        idftp.changedirup;

        idftp.list(nil);

      until dircount = idftp.directorylisting.count ;

    end;

    if idftp.directorylisting[i].itemtype = ditdirectory then

      ftp_downloaddir(idftp,idftp.directorylisting[i].filename,localdir + remotedir + ''\'')

    else begin

      idftp.get(idftp.directorylisting[i].filename,localdir + remotedir + ''\'' +

        idftp.directorylistin

  • 上一篇资讯: Delphi TIdFTP上传和下载
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号