 
   Delphi - объектно-ориентированный язык программирования, разработанный компанией Borland в 1995 году. Он основан на языке программирования Pascal, но имеет более расширенные возможности и добавлены новые функции.
 
   Delphi является интегрированной средой разработки (IDE), которая позволяет разрабатывать программное обеспечение для различных платформ, включая Windows, macOS, Android и iOS. Delphi достигает многоплатформенности с помощью...
{ 
For People (as I am) who can't manage with all of this function names and 
forget some "jewels". 
You should sometimes "rename" such procedures if it helps you to remember. 
}
 { 
Die Unit Sysutils verbirgt einige Funktionen, die oft in Vergessenheit 
geraten. 
Kapselt die Funktion aus "Sysutils" in einer Funktion mit einem 
"ansprechenden" Namen. 
}
 { IncludeTrailingBackslash }
 // Adds '' to the end of a string if it is not already there. 
// Die Funktion gibt einen Pfadnamen mit dem abschlieЯenden Zeichen '' zurьck. 
function CheckPfadEnd(const
 P: string
): string
;
 begin
 Result := IncludeTrailingBackslash(P);
 end
;
 { ExcludeTrailingBackslash }
 // Removes one '' from the end of a string if it is there. 
// Die Funktion gibt einen Pfadnamen ohne das abschlieЯende Zeichen  zurьck. 
MyDir := ExcludeTrailingBackslash('c:Windows');
 // ---> MyDir = c:Windows