程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> Delphi一個解析FTP地址的小函數

Delphi一個解析FTP地址的小函數

編輯:關於C#
 

procedure TForm1.FTPAnalysis(S:string;var UserName,Password,IP,FileName:String;var DirList:TStringList);
var
  i,j:integer;
  strAuthorization,strAddr,strDirFile:string;//授權信息
begin
  UserName:= 'anonymous';
  Password:= '[email protected]';
  IP := '';
  strAddr := Copy(S,7,length(S)-6);//取得ftp://之後的部分
  //S 格式必須是類似ftp://rec:[email protected]/20050418/abcdef.vox,或ftp://192.168.76.11/......
  i := Pos('@',S);
  if(i>0) then
  begin
    strAuthorization := Copy(S,7,i-7); //只取帳號密碼字段
    j:=Pos(':',strAuthorization);
    if(j<1)then
      exit;
    UserName := Copy(strAuthorization,1,j-1);
    PassWord := Copy(strAuthorization,j+1,length(strAuthorization)-j);
  end;
  i := Pos('@',strAddr);
  j:=Pos('/',strAddr);
  if(j>0) then
    IP := Copy(strAddr,i+1,j-i-1);//獲得IP地址
  strDirFile := Copy(strAddr,j+1,length(strAddr)-j);
  DirList.Delimiter := '/';
  DirList.DelimitedText := strDirFile;//獲得目錄列表
  FileName := DirList[DirList.count-1];//最後部分為文件名
  DirList.Delete(DirList.Count-1);

end;

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved