asp.net TIDFtp用法介绍
程序员文章站
2024-03-06 22:26:38
1 连接远程服务器 procedure connect(aautologin: boolean; const atimeout: integer); 2 改变目录 proc...
1 连接远程服务器
procedure connect(aautologin: boolean; const atimeout: integer);
2 改变目录
procedure changedir(const adirname: string);
3 下载
procedure get(const asourcefile: string; adest: tstream; aresume: boolean); overload;
procedure get(const asourcefile: string; const adestfile: string; const acanoverwrite: boolean; aresume: boolean); overload;
4 上传
procedure put(const asource: tstream; const adestfile: string; const aappend: boolean); overload;
procedure put(const asourcefile: string; const adestfile: string; const aappend: boolean); overload;
5 删除
procedure delete(const afilename: string);
判断是否连接
if idftp1.connected then
begin
...........
end;
引用别人一下,做为自己以后笔记
现在很多应用都需要上传与下载大型文件,通过http方式上传大文件有一定的局限性。幸好ftp作为一个非常老而且非常成熟的协议可以高效稳定地完成大文件的上传下载,并且可以完美地实现续传。就拿我写的电影服务器管理端程序来说,各种方案比较后,发现使用ftp可以完美地实现要求。但是要通过winsocket库实现ftp比较麻烦,幸好有indy--一个包装了大多数网络协议的组件包。
通过indy,程序设计人员可以通过阻塞方式进行编程,可以抛开蹩脚的winsocket异步模式,采用与unix系统上等同的阻塞编程模式进行。这样,程序员就可以很好的处理程序的运行流程。
下面,我们进入到indy的tidftp世界。
1.控件的说明
使用indy 9中的tidftp控件可以实现通过ftp方式进行文件的上传与下载。
2.控件的具体使用
(1)控件属性设置
默认属性即可,与服务器连接直接相关的属性如主机名与用户等在建立连接时进行设定。需要设定的是recvbuffersize和sendbuffersize两属性的值。另外需要根据要传输的文件类型指定transfertype属性,而其他属性按默认值设定即可。
recvbuffersize说明(默认值为8192字节):该属性为整型变量,用于指定连接所用的接受缓冲区大小。
sendbuffersize说明(默认值为32768字节):该属性也为整型变量,用于指定连接所用的发送缓冲区的最大值。该属性在writestream方法中时,可用于tstream指定要发送内容的块数。如果要发送的内容大于本属性值,则发送内容被分为多个块发送。
transfertype说明(默认值为ftbinary):该属性为tidftptransfertype型变量。用于指定传输内容是二进制文件(ftbinary )还是ascii文件(ftascii)。应用程序需要使用二进制方式传输可执行文件、压缩文件和多媒体文件等;而使用ascii方式传输文本或超文本等文本型数据。
(2)控件的事件响应
ondisconnected响应:tnotifyevent类,用于响应断开(disconnect)事件。当disconnect方法被调用用来关闭socket的时候,触发该响应。应用程序必须指定该事件响应的过程,以便对该断开事件进行相应。
onstatus响应:tidstatusevent类。该响应在当前连接的状态变化时被触发。该事件可由dostatus方法触发并提供给事件控制器属性。axstatus是当前连接的tidstatus值;aaargs是一个可选的参数用于格式化函数,它将用于构造表现当前连接状态的文本消息。
onwork响应:onword是tworkevent类事件的响应控制器。onwork用于关联dowork方法当缓冲区读写操作被调用时通知indy组件和类。它一般被用于控制进度条和视窗元素的更新。aworkmode表示当前操作的模式,其中:wmread-组件正在读取数据;wmwrite-组件正在发送数据。aworkcount指示当前操作的字节计数。
onworkbegin响应:tworkbeginevent类。当缓冲区读写操作初始化时,该事件关联beginwork方法用于通知indy组件和类。它一般被用于控制进度条和视窗元素的更新。aworkmode表示当前操作的模式,其中:wmread-组件正在读取数据;wmwrite-组件正在发送数据。aworkcountmax用于指示发送到onworkbegin事件的操作的最大字节数,0值代表未知。
onworkend响应:tworkendevent类。当缓冲区读写操作终止时,该事件关联endwork方法用于通知indy组件和类。aworkmode表示当前操作的模式,其中:wmread-组件正在读取数据;wmwrite-组件正在发送数据。aworkcount表示操作的字节数。
在事件响应中,主要通过上述五种事件响应来控制程序。在一般情况下,在ondisconnected中设定连接断开的界面通知;在onstatus中设定当前操作的状态;在onwork中实现传输中状态条和其他参数的显示;而在onworkbegin和onworkend中分别设定开始传输和传输结束时的界面。
(3)连接远程服务器
完成了设定控件属性和实现了控件的事件响应后,就可以与服务器进行交互和传输了。在连接之前,应首先判断idftp是否处于连接状态,如果connected为false,则通过界面控件或其他方式指定与服务器连接相关的一些tcp类属性的设置,分别是:host(主机名):string、username(用户名):string、password(密码):string,也可以指定port(端口)。之后调用connect方法连接远程服务器,如果无异常出现则连接成功建立。
过程说明:procedure connect(aautologin: boolean; const atimeout: integer);
该过程连接远程ftp服务器
属性:aautologin: boolean = true
连接后自动登录,该参数默认为true。
const atimeout: integer = idtimeoutdefault
超时时间,单位:秒。
示例代码:
if idftp1.connected then try
if transferrigndata then idftp1.abort;
idftp1.quit;
finally
end
else with idftp1 do try
username := useridedit.text;
password := passwordedit.text;
host := ftpserveredit.text;
connect;
changedir(currentdiredit.text);
finally
end;
(4)改变目录
连接建立后,可以改变当前ftp会话所在的目录。对于已知绝对路径的情况下,可以直接调用changedir(const adirname: string)方法来转换目录,adirname表示服务器上的文件系统目录,另外还可以调用changedirup回到上级目录。
如果未知路径,则可以通过list(adest: tstrings; const aspecifier: string; const adetails: boolean)过程获取远程服务器的当前目录结构,此时必须设定transfertype为ftascii(ascii模式),其中:adest保存当前目录结构,可以在后续程序中调用该列表。另外可以通过retrievecurrentdir方法获取当前目录名。
过程说明:
procedure changedir(const adirname: string);
改变工作目录
属性
const adirname: string
远程服务器的目录描述
说明:该过程实际上是实现了ftp cwd命令。
procedure changedirup;
到上一级目录
function retrievecurrentdir: string;
该函数返回当前目录名
procedure list(adest: tstrings; const aspecifier: string; const adetails: boolean);
列出当前目录所有文件和子目录及其属性
参数:
adest: tstrings
保存文件及子目录的返回结果
const aspecifier: string =
文件掩码,用于列出符合条件的文件
const adetails: boolean = true
包含文件和子目录属性
property directorylisting: tidftplistitems;
返回文件及目录结构的列表
示例代码:
ls := tstringlist.create;
try
idftp1.changedir(dirname);
idftp1.transfertype := ftascii;
currentdiredit.text := idftp1.retrievecurrentdir;
directorylistbox.items.clear;
idftp1.list(ls);
directorylistbox.items.assign(ls);
if directorylistbox.items.count > 0 then
if ansipos(total, directorylistbox.items[0]) > 0 then directorylistbox.items.delete(0);
finally
ls.free;
end;
(5)下载的实现
在下载之前,必须查看directorylisting.items[scurrfile].itemtype是否为文件,如返回为ditdirectory则代表当前文件名为目录,不能下载,必须导向到文件才可。如为文件,则可以进行下载。在下载前,设定传输的类型为二进制文件,并且指定本地要保存的路径。通过调用get方法,实现文件的下载。下载过程较慢,可以考虑将其放到线程中实现。
过程说明:
procedure get(const asourcefile: string; adest: tstream; aresume: boolean); overload;
procedure get(const asourcefile: string; const adestfile: string; const acanoverwrite: boolean; aresume: boolean); overload;
从远程服务器上获取文件。
属性说明:
const asourcefile: string
远程服务器上的源文件名
const adestfile: string
保存到客户机上的文件名
const acanoverwrite: boolean = false
重写同名文件
aresume: boolean = false
是否进行断点续传
示例代码:
savedialog1.filename := name;
if savedialog1.execute then begin
setfunctionbuttons(false);
idftp1.transfertype := ftbinary;
bytestotransfer := idftp1.size(name);
if fileexists(name) then begin
case messagedlg(file aready exists. do you want to resume the download operation?,
mtconfirmation, mbyesnocancel, 0) of
mryes: begin
bytestotransfer := bytestotransfer - filesizebyname(name);
idftp1.get(name, savedialog1.filename, false, true);
end;
mrno: begin
idftp1.get(name, savedialog1.filename, true);
end;
mrcancel: begin
exit;
end;
end;
end
else begin
idftp1.get(name, savedialog1.filename, false);
end;
(6)上传的实现
上传的实现与下载类似,通过put方法即可。
过程说明:
procedure put(const asource: tstream; const adestfile: string; const aappend: boolean); overload;
procedure put(const asourcefile: string; const adestfile: string; const aappend: boolean); overload;
上传文件至服务器
属性说明:
const asourcefile: string
将要被上传的文件
const adestfile: string =
服务器上的目标文件名
const aappend: boolean = false
是否继续上传
代码示例:
if idftp1.connected then begin
if uploadopendialog1.execute then try
idftp1.transfertype := ftbinary;
idftp1.put(uploadopendialog1.filename, extractfilename(uploadopendialog1.filename));
//可以在此添加改变目录的代码;
finally
//完成清除工作
end;
end;
(7)删除的实现
删除文件使用delete方法,该方法删除指定的文件,删除对象必须为文件。如果要删除目录则使用removedir方法。
过程说明:
procedure delete(const afilename: string);
删除文件
procedure removedir(const adirname: string);
删除文件夹,根据不同的服务器删除文件夹有不同的要求。有些服务器不允许删除非空文件夹,程序员需要添加清空目录的代码。
上述两个过程的参数均为目标名称
代码示例:
if not idftp1.connected then exit;
name := idftp1.directorylisting.items[icurrselect].filename;
if idftp1.directorylisting.items[icurrselect].itemtype = ditdirectory then try
idftp1.removedir(name);
finally
end
else
try
idftp1.delete(name);
finally
end;
(8)后退的实现
后退在实际上是目录操作的一种,可以简单的改变当前目录为..来实现,也可以通过回到上级目录来实现。
(9)取消的实现
在idftp的传输过程中,可以随时使用abort方法取消当前操作。可以的onwork事件的实现中来确定何时取消操作。
代码示例:
//取消按钮的onclick响应
procedure tmainform.abortbuttonclick(sender: tobject);
begin
aborttransfer := true;
end;
//idftp的onwork事件响应
procedure tmainform.idftp1work(sender: tobject; aworkmode: tworkmode;
const aworkcount: integer);
begin
...
if aborttransfer then idftp1.abort;
aborttransfer := false;
end;
(10)断点续传的实现
断点续传就是在上传或下载过程开始时,判断已经传输过的文件是否上传输完毕,如果传输没有成功完成,则在上次中断处继续进行传输工作。实现该功能需要两个重要的操作,首先是判断文件的大小信息,其次是在传输过程get和put中指定上传的行为。
判断服务器上文件的大小使用函数size(filename)。在下载过程中,比较本地文件和远程文件的信息,然后在get中指定aresume := true即可。而上传也一样,指定put的aappend := true就可以了。
在前面我们讲过,indy的网络操作大部分是阻塞模式的,tidftp也不例外。这样在上述各个操作运行过程的时候用户界面被暂时冻结,必须要等待调用返回才能继续用户操作界面响应。所以在实际编程中,需要使用多线程的方式来保证户界面的响应。windows系统可以使用createthread系统调用来创建线程,但是在使用的时候需要开发人员做很多额外的工作来保证线程的同步等问题。而indy中也包含了实现多线程的控件tidthreadcomponent,相对比之下该控件实现多线程时更加方便,也更容易控制。我将在后续的文章里为大家介绍tidthreadcomponent的使用方法
procedure connect(aautologin: boolean; const atimeout: integer);
2 改变目录
procedure changedir(const adirname: string);
3 下载
procedure get(const asourcefile: string; adest: tstream; aresume: boolean); overload;
procedure get(const asourcefile: string; const adestfile: string; const acanoverwrite: boolean; aresume: boolean); overload;
4 上传
procedure put(const asource: tstream; const adestfile: string; const aappend: boolean); overload;
procedure put(const asourcefile: string; const adestfile: string; const aappend: boolean); overload;
5 删除
procedure delete(const afilename: string);
判断是否连接
if idftp1.connected then
begin
...........
end;
引用别人一下,做为自己以后笔记
现在很多应用都需要上传与下载大型文件,通过http方式上传大文件有一定的局限性。幸好ftp作为一个非常老而且非常成熟的协议可以高效稳定地完成大文件的上传下载,并且可以完美地实现续传。就拿我写的电影服务器管理端程序来说,各种方案比较后,发现使用ftp可以完美地实现要求。但是要通过winsocket库实现ftp比较麻烦,幸好有indy--一个包装了大多数网络协议的组件包。
通过indy,程序设计人员可以通过阻塞方式进行编程,可以抛开蹩脚的winsocket异步模式,采用与unix系统上等同的阻塞编程模式进行。这样,程序员就可以很好的处理程序的运行流程。
下面,我们进入到indy的tidftp世界。
1.控件的说明
使用indy 9中的tidftp控件可以实现通过ftp方式进行文件的上传与下载。
2.控件的具体使用
(1)控件属性设置
默认属性即可,与服务器连接直接相关的属性如主机名与用户等在建立连接时进行设定。需要设定的是recvbuffersize和sendbuffersize两属性的值。另外需要根据要传输的文件类型指定transfertype属性,而其他属性按默认值设定即可。
recvbuffersize说明(默认值为8192字节):该属性为整型变量,用于指定连接所用的接受缓冲区大小。
sendbuffersize说明(默认值为32768字节):该属性也为整型变量,用于指定连接所用的发送缓冲区的最大值。该属性在writestream方法中时,可用于tstream指定要发送内容的块数。如果要发送的内容大于本属性值,则发送内容被分为多个块发送。
transfertype说明(默认值为ftbinary):该属性为tidftptransfertype型变量。用于指定传输内容是二进制文件(ftbinary )还是ascii文件(ftascii)。应用程序需要使用二进制方式传输可执行文件、压缩文件和多媒体文件等;而使用ascii方式传输文本或超文本等文本型数据。
(2)控件的事件响应
ondisconnected响应:tnotifyevent类,用于响应断开(disconnect)事件。当disconnect方法被调用用来关闭socket的时候,触发该响应。应用程序必须指定该事件响应的过程,以便对该断开事件进行相应。
onstatus响应:tidstatusevent类。该响应在当前连接的状态变化时被触发。该事件可由dostatus方法触发并提供给事件控制器属性。axstatus是当前连接的tidstatus值;aaargs是一个可选的参数用于格式化函数,它将用于构造表现当前连接状态的文本消息。
onwork响应:onword是tworkevent类事件的响应控制器。onwork用于关联dowork方法当缓冲区读写操作被调用时通知indy组件和类。它一般被用于控制进度条和视窗元素的更新。aworkmode表示当前操作的模式,其中:wmread-组件正在读取数据;wmwrite-组件正在发送数据。aworkcount指示当前操作的字节计数。
onworkbegin响应:tworkbeginevent类。当缓冲区读写操作初始化时,该事件关联beginwork方法用于通知indy组件和类。它一般被用于控制进度条和视窗元素的更新。aworkmode表示当前操作的模式,其中:wmread-组件正在读取数据;wmwrite-组件正在发送数据。aworkcountmax用于指示发送到onworkbegin事件的操作的最大字节数,0值代表未知。
onworkend响应:tworkendevent类。当缓冲区读写操作终止时,该事件关联endwork方法用于通知indy组件和类。aworkmode表示当前操作的模式,其中:wmread-组件正在读取数据;wmwrite-组件正在发送数据。aworkcount表示操作的字节数。
在事件响应中,主要通过上述五种事件响应来控制程序。在一般情况下,在ondisconnected中设定连接断开的界面通知;在onstatus中设定当前操作的状态;在onwork中实现传输中状态条和其他参数的显示;而在onworkbegin和onworkend中分别设定开始传输和传输结束时的界面。
(3)连接远程服务器
完成了设定控件属性和实现了控件的事件响应后,就可以与服务器进行交互和传输了。在连接之前,应首先判断idftp是否处于连接状态,如果connected为false,则通过界面控件或其他方式指定与服务器连接相关的一些tcp类属性的设置,分别是:host(主机名):string、username(用户名):string、password(密码):string,也可以指定port(端口)。之后调用connect方法连接远程服务器,如果无异常出现则连接成功建立。
过程说明:procedure connect(aautologin: boolean; const atimeout: integer);
该过程连接远程ftp服务器
属性:aautologin: boolean = true
连接后自动登录,该参数默认为true。
const atimeout: integer = idtimeoutdefault
超时时间,单位:秒。
示例代码:
if idftp1.connected then try
if transferrigndata then idftp1.abort;
idftp1.quit;
finally
end
else with idftp1 do try
username := useridedit.text;
password := passwordedit.text;
host := ftpserveredit.text;
connect;
changedir(currentdiredit.text);
finally
end;
(4)改变目录
连接建立后,可以改变当前ftp会话所在的目录。对于已知绝对路径的情况下,可以直接调用changedir(const adirname: string)方法来转换目录,adirname表示服务器上的文件系统目录,另外还可以调用changedirup回到上级目录。
如果未知路径,则可以通过list(adest: tstrings; const aspecifier: string; const adetails: boolean)过程获取远程服务器的当前目录结构,此时必须设定transfertype为ftascii(ascii模式),其中:adest保存当前目录结构,可以在后续程序中调用该列表。另外可以通过retrievecurrentdir方法获取当前目录名。
过程说明:
procedure changedir(const adirname: string);
改变工作目录
属性
const adirname: string
远程服务器的目录描述
说明:该过程实际上是实现了ftp cwd命令。
procedure changedirup;
到上一级目录
function retrievecurrentdir: string;
该函数返回当前目录名
procedure list(adest: tstrings; const aspecifier: string; const adetails: boolean);
列出当前目录所有文件和子目录及其属性
参数:
adest: tstrings
保存文件及子目录的返回结果
const aspecifier: string =
文件掩码,用于列出符合条件的文件
const adetails: boolean = true
包含文件和子目录属性
property directorylisting: tidftplistitems;
返回文件及目录结构的列表
示例代码:
ls := tstringlist.create;
try
idftp1.changedir(dirname);
idftp1.transfertype := ftascii;
currentdiredit.text := idftp1.retrievecurrentdir;
directorylistbox.items.clear;
idftp1.list(ls);
directorylistbox.items.assign(ls);
if directorylistbox.items.count > 0 then
if ansipos(total, directorylistbox.items[0]) > 0 then directorylistbox.items.delete(0);
finally
ls.free;
end;
(5)下载的实现
在下载之前,必须查看directorylisting.items[scurrfile].itemtype是否为文件,如返回为ditdirectory则代表当前文件名为目录,不能下载,必须导向到文件才可。如为文件,则可以进行下载。在下载前,设定传输的类型为二进制文件,并且指定本地要保存的路径。通过调用get方法,实现文件的下载。下载过程较慢,可以考虑将其放到线程中实现。
过程说明:
procedure get(const asourcefile: string; adest: tstream; aresume: boolean); overload;
procedure get(const asourcefile: string; const adestfile: string; const acanoverwrite: boolean; aresume: boolean); overload;
从远程服务器上获取文件。
属性说明:
const asourcefile: string
远程服务器上的源文件名
const adestfile: string
保存到客户机上的文件名
const acanoverwrite: boolean = false
重写同名文件
aresume: boolean = false
是否进行断点续传
示例代码:
savedialog1.filename := name;
if savedialog1.execute then begin
setfunctionbuttons(false);
idftp1.transfertype := ftbinary;
bytestotransfer := idftp1.size(name);
if fileexists(name) then begin
case messagedlg(file aready exists. do you want to resume the download operation?,
mtconfirmation, mbyesnocancel, 0) of
mryes: begin
bytestotransfer := bytestotransfer - filesizebyname(name);
idftp1.get(name, savedialog1.filename, false, true);
end;
mrno: begin
idftp1.get(name, savedialog1.filename, true);
end;
mrcancel: begin
exit;
end;
end;
end
else begin
idftp1.get(name, savedialog1.filename, false);
end;
(6)上传的实现
上传的实现与下载类似,通过put方法即可。
过程说明:
procedure put(const asource: tstream; const adestfile: string; const aappend: boolean); overload;
procedure put(const asourcefile: string; const adestfile: string; const aappend: boolean); overload;
上传文件至服务器
属性说明:
const asourcefile: string
将要被上传的文件
const adestfile: string =
服务器上的目标文件名
const aappend: boolean = false
是否继续上传
代码示例:
if idftp1.connected then begin
if uploadopendialog1.execute then try
idftp1.transfertype := ftbinary;
idftp1.put(uploadopendialog1.filename, extractfilename(uploadopendialog1.filename));
//可以在此添加改变目录的代码;
finally
//完成清除工作
end;
end;
(7)删除的实现
删除文件使用delete方法,该方法删除指定的文件,删除对象必须为文件。如果要删除目录则使用removedir方法。
过程说明:
procedure delete(const afilename: string);
删除文件
procedure removedir(const adirname: string);
删除文件夹,根据不同的服务器删除文件夹有不同的要求。有些服务器不允许删除非空文件夹,程序员需要添加清空目录的代码。
上述两个过程的参数均为目标名称
代码示例:
if not idftp1.connected then exit;
name := idftp1.directorylisting.items[icurrselect].filename;
if idftp1.directorylisting.items[icurrselect].itemtype = ditdirectory then try
idftp1.removedir(name);
finally
end
else
try
idftp1.delete(name);
finally
end;
(8)后退的实现
后退在实际上是目录操作的一种,可以简单的改变当前目录为..来实现,也可以通过回到上级目录来实现。
(9)取消的实现
在idftp的传输过程中,可以随时使用abort方法取消当前操作。可以的onwork事件的实现中来确定何时取消操作。
代码示例:
//取消按钮的onclick响应
procedure tmainform.abortbuttonclick(sender: tobject);
begin
aborttransfer := true;
end;
//idftp的onwork事件响应
procedure tmainform.idftp1work(sender: tobject; aworkmode: tworkmode;
const aworkcount: integer);
begin
...
if aborttransfer then idftp1.abort;
aborttransfer := false;
end;
(10)断点续传的实现
断点续传就是在上传或下载过程开始时,判断已经传输过的文件是否上传输完毕,如果传输没有成功完成,则在上次中断处继续进行传输工作。实现该功能需要两个重要的操作,首先是判断文件的大小信息,其次是在传输过程get和put中指定上传的行为。
判断服务器上文件的大小使用函数size(filename)。在下载过程中,比较本地文件和远程文件的信息,然后在get中指定aresume := true即可。而上传也一样,指定put的aappend := true就可以了。
在前面我们讲过,indy的网络操作大部分是阻塞模式的,tidftp也不例外。这样在上述各个操作运行过程的时候用户界面被暂时冻结,必须要等待调用返回才能继续用户操作界面响应。所以在实际编程中,需要使用多线程的方式来保证户界面的响应。windows系统可以使用createthread系统调用来创建线程,但是在使用的时候需要开发人员做很多额外的工作来保证线程的同步等问题。而indy中也包含了实现多线程的控件tidthreadcomponent,相对比之下该控件实现多线程时更加方便,也更容易控制。我将在后续的文章里为大家介绍tidthreadcomponent的使用方法