利用PBFunc在Powerbuilder中进行FTP操作

Posted wxj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用PBFunc在Powerbuilder中进行FTP操作相关的知识,希望对你有一定的参考价值。

PBFunc.dll包含了FTP的操作,使用FTP时主要需要以下步骤:

1.调用of_Login函数登录Ftp服务器

2.调用FTP的各种方法

3.Ftp操作完毕后调用of_LoginOut方法进行注销

代码如下:

n_pbfunc_ftp lnv_ftp
IF Not lnv_ftp.of_Login("192.168.68.21",21,"ftpuser","123456") Then
	MessageBox("提示","连接FTP服务器失败")
	return
End IF
long ll_files
string ls_files[]
ll_files = lnv_ftp.of_dir("/testdir/",ls_files)//获取文件列表
lnv_ftp.of_downloadfile("/testdir/I_20170626_00000001.dat","D:\\I_20170626_00000001.dat")//下载文件
lnv_ftp.of_uploadFile("D:\\comtemp.txt","/testdir/comtemp.txt")//上传文件

lnv_ftp.of_LoginOut()///注销

  代码下载:http://download.csdn.net/download/my_aa/10250443

以上是关于利用PBFunc在Powerbuilder中进行FTP操作的主要内容,如果未能解决你的问题,请参考以下文章

利用PBFunc在Powerbuilder中进行国密SM4的加密解密操作

利用PBFunc在Powerbuilder中支付宝当面付功能

从 PowerBuilder 执行 Oracle 函数

在powerbuilder 12.0中多次执行oracle过程

关于开发MIS系统需要的技术总结

powerbuilder中怎样新建一个pbl文件