uses IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdFTP
//
procedure UploadPerFTP;
procedure GetDir(dir: string);
var
SearchRec: TSearchRec;
details, nodetails: TStringList;
k: Integer;
begin
//iterate through directory given
if FindFirst(dir + '*.*', faAnyFile, SearchRec) = 0 then
begin
repeat
//get rid of the both "dummy-directories" '.' and '..'
if (SearchRec.Name <> '.') and (SearchRec.Name <> '..') then
begin
//if we found a folder
//falls wir einen ordner haben
if (SearchRec.Attr and faDirectory) = faDirectory then
begin
//get folder contents from ftp. one with details, one without
details := TStringList.Create;
nodetails := TStringList.Create;
Form1.IdFTP1.List(details, '', True);
Form1.IdFTP1.List(nodetails, '', False);
//we only want to have directories in the list (without '.' and '..')
for k := details.Count - 1 downto 0 do
begin
if details.Strings[k] <> '' then
begin
if (details.Strings[k][1] <> 'd') or
(nodetails.Strings[k] = '.') or
(nodetails.Strings[k] = '..') then
begin
details.Delete(k);
nodetails.Delete(k);
end;
end;
end;
//if our directory does not exists on the server, create it
if nodetails.IndexOf(SearchRec.Name) = -1 then
begin
Form1.IdFTP1.MakeDir(SearchRec.Name);
end;
//change into next directory on server
Form1.IdFTP1.ChangeDir(SearchRec.Name);
details.Free;
nodetails.Free;
//and also locally go into the next subfolder
GetDir(dir + SearchRec.Name + '/');
//we have to go one directory up after leaving the recursion
Form1.IdFTP1.ChangeDirUp;
end
else
begin
//if it's only a file, upload it to the current directory
Form1.IdFTP1.Put(dir + SearchRec.Name, SearchRec.Name);
end;
end;
until FindNext(SearchRec) <> 0;
FindClose(SearchRec);
end;
end;
var
dir: string;
details, nodetails: TStringList;
k: Integer;
begin
//set some basic settings on your ftp client (TIdFTPClient)
with Form1.IdFTP1 do
begin
Host := 'your_server.com';
// Adjust your data here
Username := 'your_username';
// Adjust your data here
Password := 'your_password';
// Adjust your data here
Passive := True;
// Adjust your data here
end;
Form1.IdFTP1.Connect;
//if you want to upload you data to an remote-directory, enter it below (does not matter if 'dir\dir' or 'dir/dir')
dir := StringReplace('your/remote_directory', '/', '/', [rfReplaceAll]);
// Adjust your data here
//remove first '/' if there's one
if dir <> '' then
begin
if dir[1] = '/' then Delete(dir, 1, 1);
//but add a '/' at the end
if dir[Length(dir)] <> '/' then dir := dir + '/';
//loop through our remote-directories
while Pos('/', dir) > 0 do
begin
//get folder contents from ftp. one with details, one without
details := TStringList.Create;
nodetails := TStringList.Create;
Form1.IdFTP1.List(details, '', True);
Form1.IdFTP1.List(nodetails, '', False);
//we only want to have directories in the list (without '.' and '..')
for k := details.Count - 1 downto 0 do
begin
if details.Strings[k] <> '' then
begin
if (details.Strings[k][1] <> 'd') or
(nodetails.Strings[k] = '.') or
(nodetails.Strings[k] = '..') then
begin
details.Delete(k);
nodetails.Delete(k);
end;
end;
end;
//if our directory does not exists on the server, create it
if nodetails.IndexOf(Copy(dir, 1, Pos('/', dir) - 1)) = -1 then
begin
Form1.IdFTP1.MakeDir(Copy(dir, 1, Pos('/', dir) - 1));
end;
//change to our directory on server
Form1.IdFTP1.ChangeDir(Copy(dir, 1, Pos('/', dir) - 1));
//remove first directory from path ('your/directory/subdir/' --> 'directory/subdir/')
Delete(dir, 1, Pos('/', dir));
details.Free;
nodetails.Free;
end;
end;
//ftp client is ready in your remote-directory
//begin to upload our local directory
dir := 'C:/directory/';
// Adjust your data here
if dir[Length(dir)] <> '/' then begin
dir := dir + '/';
GetDir(dir);
Form1.IdFTP1.Disconnect;
end;
end;

Upload Directory to FTP-Server
Abonnieren
Posts (Atom)
Beliebte Posts
-
Windows Key Sniffer 0.82 - Update 08/2024 Der Windows Key Sniffer hat mir im Laufe der Zeit viel Arbeit erspart und unterstützt, viele Wi...
-
Network Source Code Update Source Code Network Update : https://asciigen.blogspot.com/p/network.html Send Message 1.0 Source Server Client ...
-
Windows Defender Bypass Version 0.75 - Update 11/2024 Den Windows 10-eigenen Virenschutz Defender kann man auf mehreren Wegen abschalt...
-
ASCii GIF Animator Update Version 0.68 (32 bit) - 11/2024 Bei dieser überarbeiteten Version ist die Kompatibilität zu den verschiedenen...
-
MD5 Hacker v.0.26 - Update 08.2024 MD5 Hashs sollten eigentlich nicht entschlüsselt werden können. Jedoch gibt es Tools, mit welchen auch ...
-
Host Editor Version 0.65 - Update 01/2025 Hosts File Editor allows for the easy editing of host files and backup creation. Create your ...
-
Dir Sniffer Version 0.11 - Update 02/2025 Dir Sniffer ist ein kleines aber nützliches Tool um herauszufinden, was ihr Programm auf ihrem...
-
Oldskool Font Generator v.0.29 - Update 11/2023 Das Tool stell 508 Bitmap Fonts zu Verfügung. Eigene Fonts können integriert werden, sie...
-
Hard Crypter 0.19 - Update 12/2023 Mit diesem Tool können Sie jede beliebige Datei auf dem Windows-System verschlüsseln. Die Byte-Erse...
Keine Kommentare:
Kommentar veröffentlichen