首页 > 开发 > 综合 > 正文

使用PB调用API自动更新(非FTP模式)(五、复制函数F_CONNECT_COPYFILE)

2024-07-21 02:09:52
字体:
来源:转载
供稿:网友

五、复制函数f_connect_copyfile
需要控件:listbox(3个)
需要ini文件:autodown.ini
global type f_connect_copyfile from function_object
end type

forward prototypes
global function integer f_connect_copyfile (string as_path, hprogressbar hpb_1, long al_copycount, listbox lb_filecopy1, listbox lb_filecopy2, listbox lb_filecopy3)
end prototypes

global function integer f_connect_copyfile (string as_path, hprogressbar hpb_1, long al_copycount, listbox lb_filecopy1, listbox lb_filecopy2, listbox lb_filecopy3);
string ls_user
string ls_pass
string ls_directorya1,ls_directorya2
string ls_directoryb1,ls_directoryb2
string ls_directoryc1,ls_directoryc2

ls_directorya1 = as_path
ls_directorya2 = gs_application_path

string ls_filename,ls_file
string ls_filename1,ls_filename2

long ll_filecounta1,ll_filecounta2
long ll_filecountb1,ll_filecountb2
long ll_filecountc1,ll_filecountc2

long ll_cnt1
long ll_cnt2
long ll_cnt3
long ll_m
long ll_ret = 1

s_win32_find_data ss_file1,ss_file2
long ll_filehandle1,ll_filehandle2


ls_file = ls_directorya1 + '/*.*'
if not lb_filecopy1.dirlist(ls_file, 0+1+2+16) then
 return 0
end if
hpb_1.position = 0
ll_filecounta1 = lb_filecopy1.totalitems()
ll_m = 0
if al_copycount = 0 then al_copycount = 1
for ll_cnt1 = 1 to ll_filecounta1
 ls_file = lb_filecopy1.text(ll_cnt1)
 w_autodown_test.st_2.text = ls_file
 yield()
 if left(ls_file,1) = '[' then
  ls_filename = right(ls_file,len(ls_file) - 1)
  ls_filename = left(ls_filename,len(ls_filename) - 1)
  
  if ls_filename = '..' then continue
  
  ls_directoryb1 = ls_directorya1 + '/' + ls_filename
  ls_directoryb2 = ls_directorya2 + '/' + ls_filename
  if directoryexists(ls_directoryb2) = false then
   createdirectory(ls_directoryb2)
   ll_m++
   hpb_1.position = ll_m / al_copycount * 100
  end if
  
  ls_file = ls_directoryb1 + '/*.*'
  lb_filecopy2.dirlist(ls_file, 0+1+2+16)
  ll_filecountb1 = lb_filecopy2.totalitems()
  for ll_cnt2 = 1 to ll_filecountb1
   ls_file = lb_filecopy2.text(ll_cnt2)
   w_autodown_test.st_2.text = ls_file
   yield()
   if left(ls_file,1) = '[' then
    ls_filename = right(ls_file,len(ls_file) - 1)
    ls_filename = left(ls_filename,len(ls_filename) - 1)
    
    if ls_filename = '..' then continue
    
    ls_directoryc1 = ls_directoryb1 + '/' + ls_filename
    ls_directoryc2 = ls_directoryb2 + '/' + ls_filename
    if directoryexists(ls_directoryc2) = false then
     createdirectory(ls_directoryc2)
     ll_m++
     hpb_1.position = ll_m / al_copycount * 100
    end if
    
    ls_file = ls_directoryc1 + '/*.*'
    lb_filecopy3.dirlist(ls_file, 0+1+2+16)
    ll_filecountc1 = lb_filecopy3.totalitems()
    for ll_cnt3 = 1 to ll_filecountc1
     ls_file = lb_filecopy3.text(ll_cnt3)
     w_autodown_test.st_2.text = ls_file
     if ls_file = '[..]' then continue
     //判断文件,比较和下载
     ls_filename1 = ls_directoryc1 + '/' + ls_file
     ls_filename2 = ls_directoryc2 + '/' + ls_file
     yield()
     if fileexists(ls_filename2) = false then
      copyfilea(ls_filename1,ls_filename2,0)
      ll_m++
      hpb_1.position = ll_m / al_copycount * 100
     else
      ll_filehandle1 = findfirstfilea(ls_filename1,ss_file1)
      findclose(ll_filehandle1)
      ll_filehandle2 = findfirstfilea(ls_filename2,ss_file2)
      findclose(ll_filehandle2)
      choose case comparefiletime(ss_file1.ftlastwritetime,ss_file2.ftlastwritetime)
       case 0
        //两个时间相等,就返回零
       case 1
        //如lpfiletime2小于lpfiletime1,返回1
        //下载
        copyfilea(ls_filename1,ls_filename2,0)
        ll_m++
        hpb_1.position = ll_m / al_copycount * 100
       case -1
        //如lpfiletime1小于lpfiletime2,返回-1
      end choose
     end if
    next
   else
    //判断文件,比较和下载
    ls_filename1 = ls_directoryb1 + '/' + ls_file
    ls_filename2 = ls_directoryb2 + '/' + ls_file
    if fileexists(ls_filename2) = false then
     copyfilea(ls_filename1,ls_filename2,0)
     ll_m++
     hpb_1.position = ll_m / al_copycount * 100
    else
     ll_filehandle1 = findfirstfilea(ls_filename1,ss_file1)
     findclose(ll_filehandle1)
     ll_filehandle2 = findfirstfilea(ls_filename2,ss_file2)
     findclose(ll_filehandle2)
     choose case comparefiletime(ss_file1.ftlastwritetime,ss_file2.ftlastwritetime)
      case 0
       //两个时间相等,就返回零
      case 1
       //如lpfiletime2小于lpfiletime1,返回1
       //下载
       copyfilea(ls_filename1,ls_filename2,0)
       ll_m++
       hpb_1.position = ll_m / al_copycount * 100
      case -1
       //如lpfiletime1小于lpfiletime2,返回-1
     end choose
    end if
   end if
  next
 else
  //判断文件,比较和下载
  ls_filename1 = ls_directorya1 + '/' + ls_file
  ls_filename2 = ls_directorya2 + '/' + ls_file
  if fileexists(ls_filename2) = false then
   copyfilea(ls_filename1,ls_filename2,0)
   ll_m++
   hpb_1.position = ll_m / al_copycount * 100
  else
   ll_filehandle1 = findfirstfilea(ls_filename1,ss_file1)
   findclose(ll_filehandle1)
   ll_filehandle2 = findfirstfilea(ls_filename2,ss_file2)
   findclose(ll_filehandle2)
   choose case comparefiletime(ss_file1.ftlastwritetime,ss_file2.ftlastwritetime)
    case 0
     //两个时间相等,就返回零
    case 1
     //如lpfiletime2小于lpfiletime1,返回1
     //下载
     choose case lower(ls_file)
      case 'hbky_autodown.exe' //下载程序
       //filedelete(ls_filename2)
       
      case 'hbky_autodown.pbd'
       
      //case 'autodown.ini'
       
      case else
       copyfilea(ls_filename1,ls_filename2,0)
       ll_m++
       hpb_1.position = ll_m / al_copycount * 100
     end choose
    case -1
     //如lpfiletime1小于lpfiletime2,返回-1
   end choose
  end if
 end if
next
hpb_1.position = 0
return ll_ret
end function

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表