07-09-2024, Saat: 01:15
Kod: (Select All)
procedure Tfmain.btnftpgonderClick(Sender: TObject);
var oldfile,newfile:string;
begin
try
FTP1.Disconnect;
oldfile:= qloginbackuptransfersurucu.Text+qloginbackuptransferdosyaadi.Text+'\'+islemkodu+'.zip';
newfile:= islemkodu+'.zip';
FTP1.host := '**';
FTP1.username := '**';
FTP1.password := '**';
FTP1.port := 21;
FTP1.Connect;
if FTP1.Connected = true then
begin
memo.Lines.Add(DateTimeToStr(now)+' '+islemkodu+' Sunucuya Bağlandı...');
FTP1.Put(oldfile , newfile);
memo.Lines.Add(DateTimeToStr(now)+' '+islemkodu+' Sunucuya Dosya Aktarıldı...');
end;
except
on E : Exception do
begin
ShowMessage('Exception = '+E.Message);
end;
end;
end;
Merhabalar, yukardaki kodlarla resim veya text dosyasını sunucuya gönderebiliyorum ancak zipli 50-100 mb veya 2-3 gb dosyaları gönderiyor görünüyor. Ancak sunucudan download edip zipden çıkarırken hata veriyor. Birden fazla metot denedim hepsinde aynı hatayı aldım.