asp.net 一个封装比较完整的FTP类
ftp ftp = new ftp("192.168.1.117", "ahuinan", "123456");
string oldname = this.fileupload1.postedfile.filename;
string newname = dd + h + mm + ss + oldname.substring(oldname.lastindexof("."));
// ftp.connect();
ftp.openupload(oldname,newname);
while (ftp.doupload() > 0)
{
int perc = (int)(((ftp.bytestotal) * 100) / ftp.filesize);
response.write(perc.tostring() + "%<br/>");
response.flush();
}
功能
ü 建立ftp链接
ü 支持代理
ü 多种重载的同步上传文件
ü 多种重载的异步上传文件
ü 多种重载的同步下载文件
ü 多种重载的异步下载文件
ü 上传文件的进度百分比
ü 下载文件的进度白分比
ü 有区分的列出目录或者文件的信息(考虑到ms dos显示格式和unix格式)
ü 目录或文件存在的判断
ü 删除文件
ü 重命名文件、目录
ü 在ftp服务器上面拷贝、移动文件(许多人可能在苦苦寻找这个功能)
ü 建立、删除目录
ü 目录切换操作(很新颖哦 j)
公共构造函数
名称 |
说明 |
clsftp() |
初始化clsftp类的新实例 |
clsftp(uri ftpuri, string strusername, string strpassword) |
由ftp地址、ftp登录用户信息、ftp登录用户密码初始化clsftp类的新实例 |
clsftp(uri ftpuri, string strusername, string strpassword, webproxy objproxy) |
由ftp地址、ftp登录用户信息、ftp登录用户密码、代理服务器对象初始化clsftp类的新实例 |
|
|
公共属性
名称 |
说明 |
uri |
获取或设置ftp服务器地址 |
directorypath |
获取当前工作目录 |
username |
获取或设置ftp登录用户 |
password |
获取或设置ftp登录密码 |
proxy |
获取或设置连接ftp服务器的代理服务 |
errormsg |
获取操在返回的错误信息 |
公共方法
名称 |
说明 |
downloadfile(string remotefilename, string localpath) |
从ftp服务器下载文件,使用与远程文件同名的文件名来保存文件。 参数说明: remotefilename: 远程文件名 localpath: 本地路径 |
downloadfile(string remotefilename, string localpath, string localfilename) |
从ftp服务器下载文件,指定本地路径和本地文件名。 参数说明: localpath: 本地路径 localfilepath: 保存文件的本地路径,后面带有"\" localfilename: 保存本地的文件名 |
downloadfile(string remotefilename) |
从ftp服务器下载文件,返回文件二进制数据。 参数说明: remotefilename: 远程文件名 |
downloadfileasync(string remotefilename, string localpath, string localfilename) |
从ftp服务器异步下载文件,指定本地路径和本地文件名。 参数说明: remotefilename: 远程文件名 localpath: 保存文件的本地路径,后面带有"\" localfilename: 保存本地的文件名 |
downloadfileasync(string remotefilename, string localfullpath) |
从ftp服务器异步下载文件,指定本地完整路径文件名。 参数说明: remotefilename: 远程文件名 localfullpath: 本地完整路径文件名 |
uploadfile(string localfullpath) |
上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件名 |
uploadfile(string localfullpath, bool overwriteremotefile) |
上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件 overwriteremotefile: 是否覆盖远程服务器上面同名的文件 |
uploadfile(string localfullpath, string remotefilename) |
上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件 remotefilename: 要在ftp服务器上面保存文件名 |
uploadfile(string localfullpath, string remotefilename, bool overwriteremotefile) |
上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件名 remotefilename: 要在ftp服务器上面保存文件名 overwriteremotefile: 是否覆盖远程服务器上面同名的文件 |
uploadfile(byte[] filebytes, string remotefilename) |
上传文件到ftp服务器。 参数说明: filebytes: 上传的二进制数据 remotefilename: 要在ftp服务器上面保存文件名 |
uploadfile(byte[] filebytes, string remotefilename, bool overwriteremotefile) |
上传文件到ftp服务器。 参数说明: filebytes: 文件二进制内容 remotefilename: 要在ftp服务器上面保存文件名 overwriteremotefile: 是否覆盖远程服务器上面同名的文件 |
uploadfileasync(string localfullpath) |
异步上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件名 |
uploadfileasync(string localfullpath, bool overwriteremotefile) |
异步上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件 overwriteremotefile: 是否覆盖远程服务器上面同名的文件 |
uploadfileasync(string localfullpath, string remotefilename) |
异步上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件 remotefilename: 要在ftp服务器上面保存文件名 |
uploadfileasync(string localfullpath, string remotefilename, bool overwriteremotefile) |
异步上传文件到ftp服务器。 参数说明: localfullpath: 本地带有完整路径的文件名 remotefilename: 要在ftp服务器上面保存文件名 overwriteremotefile: 是否覆盖远程服务器上面同名的文件 |
uploadfileasync(byte[] filebytes, string remotefilename) |
异步上传文件到ftp服务器。 参数说明: filebytes: 上传的二进制数据 remotefilename: 要在ftp服务器上面保存文件名 |
uploadfileasync(byte[] filebytes, string remotefilename, bool overwriteremotefile) |
异步上传文件到ftp服务器。 参数说明: filebytes: 文件二进制内容 remotefilename: 要在ftp服务器上面保存文件名 overwriteremotefile: 是否覆盖远程服务器上面同名的文件 |
listfilesanddirectories() |
列出ftp服务器上面当前目录的所有文件和目录。 |
listfiles() |
列出ftp服务器上面当前目录的所有文件。 |
listdirectories() |
列出ftp服务器上面当前目录的所有的目录。 |
directoryexist(string remotedirectoryname) |
判断当前目录下指定的子目录是否存在。 参数说明: remotedirectoryname: 指定的目录名 |
fileexist(string remotefilename) |
判断一个远程文件是否存在服务器当前目录下面。 参数说明: remotefilename: 远程文件名 |
deletefile(string remotefilename) |
从ftp服务器上面删除一个文件。 参数说明: remotefilename: 远程文件名 |
rename(string remotefilename, string newfilename) |
更改一个文件的名称或一个目录的名称。 参数说明: remotefilename: 原始文件或目录名称 newfilename: 新的文件或目录的名称 |
copyfiletoanotherdirectory(string remotefile, string directoryname) |
把当前目录下面的一个文件拷贝到服务器上面另外的目录中,注意,拷贝文件之后,当前工作目录还是文件原来所在的目录。 参数说明: remotefile: 当前目录下的文件名 directoryname: 新目录名称。 说明:如果新目录是当前目录的子目录,则直接指定子目录。如: subdirectory1/subdirectory2 ; 如果新目录不是当前目录的子目录,则必须从根目录一级一级的指定。如:./newdirectory/subdirectory1/subdirectory2 |
movefiletoanotherdirectory(string remotefile, string directoryname) |
把当前目录下面的一个文件移动到服务器上面另外的目录中,注意,移动文件之后,当前工作目录还是文件原来所在的目录。 参数说明: remotefile: 当前目录下的文件名 directoryname: 新目录名称。 说明:如果新目录是当前目录的子目录,则直接指定子目录。如: subdirectory1/subdirectory2 ; 如果新目录不是当前目录的子目录,则必须从根目录一级一级的指定。如:./newdirectory/subdirectory1/subdirectory2 |
makedirectory(string directoryname) |
在ftp服务器上当前工作目录建立一个子目录。 参数说明: directoryname: 子目录名称 |
removedirectory(string directoryname) |
从当前工作目录中删除一个子目录。 参数说明: directoryname: 子目录名称 |
isvalidpathchars(string directoryname) |
判断目录名中字符是否合法。 参数说明: directoryname: 目录名称 |
isvalidfilechars(string filename) |
判断文件名中字符是否合法。 参数说明: filename: 文件名称 |
gotodirectory(string directoryname) |
进入一个目录。 参数说明: directoryname: 新目录的名字。 说明:如果新目录是当前目录的子目录,则直接指定子目录。如: subdirectory1/subdirectory2 ; 如果新目录不是当前目录的子目录,则必须从根目录一级一级的指定。如:./newdirectory/subdirectory1/subdirectory2 |
enteronesubdirectory(string directoryname) |
从当前工作目录进入一个子目录。 参数说明: directoryname: 子目录名称 |
comeoutdirectory() |
从当前工作目录往上一级目录。 |
|
|
公共事件
名称 |
说明 |
downloadprogresschanged |
异步下载进度发生改变触发的事件 |
downloaddatacompleted |
异步下载文件完成之后触发的事件 |
uploadprogresschanged |
异步上传进度发生改变触发的事件 |
uploadfilecompleted |
异步上传文件完成之后触发的事件 |
|
|
其他说明
序号 |
说明 |
1 |
支持代理服务器。 可以显式地给proxy属性赋值;也可以在构造函数中传递proxy对象。如果代理需要登录用户和密码,则设置proxy的credentials属性,例如: proxy.credentials = new networkcredential(username, password) 如果没有代理,则无需给proxy属性赋值或者在构造函数中无需传递proxy参数。 |
2 |
下载文件和上传文件大小最大受int32.maxvalue限制,所以最大处理只能是2,147,483,647字节。如果您想处理更大的文件,请自己修改代码中对文件打开和读写操作部分的代码使其适应您的要求。 |
3 |
只有在异步上传文件或者异步下载文件的时候,才支持进度百分比触发事件和下载(上传)完成事件。 |
4 |
由于服务器未发送文件大小,因此被动 ftp 文件传输总是将进度百分比显示为零。若要显示进度,可以通过重写 getwebrequest 虚拟方法来将 ftp 连接更改为活动状态。所以,我们在clsftp类中另外使用内部类mywebclient
|
5 |
在列出文件和目录的时候,clsftp类区分出了所获得的响应数据哪些是文件,哪些是目录。同时,考虑到了ftp服务器上面目录样式为ms dos和unix两种表现形式的不同。 |
6 |
支持在ftp服务器上面不同目录之间移动文件和拷贝文件的功能。移动文件的方法比较巧妙,只是拷贝文件所使用的方法不太理想。 |
|
|
|
|
上一篇: JavaWeb开发入门第一篇必备知识讲解
下一篇: java File类的基本使用方法总结