我需要掃描最新文件的特定文件夾(基本上檢查修改日期以查看哪個是最新的),但請記住文件具有隨機名稱。這是我到目前爲止:通過「修改日期」確定文件夾中的哪個文件是最新的?
procedure TForm1.Button1Click(Sender: TObject);
begin
ftp.Host := 'domain';
ftp.Username := 'username';
ftp.password := 'password';
ftp.Connect;
ftp.Put('random-filename.ext'); //This is where it should grab only the latest file
ftp.Quit;
ftp.Disconnect;
end;
這可能嗎?
謝謝!
使用FTP,您需要使用LIST命令並搜索列表中的最新文件。請小心,因爲LIST結果格式不符合標準並取決於FTP服務器。 – philnext
@philnext他試圖將某些東西放到ftp中,而不是獲得 – Grrbrr404
@ Grrbrr404!你是對的。來自我的錯誤。 – philnext