- 4.66.2.12. -
Table of Contents
4. Standard Units
4.66. Strings - Large string manipulation unit
4.66.2. Strings Unit Procedures and Functions
4.66.2.12. AppendPathDelimiter function
4.66.2.12. AppendPathDelimiter function
Targets: MS-DOS, OS/2, Win32
Strings Unit
Appends a path delimiter (\) to the specified path-string.
Declaration:
function AppendPathDelimiter(const S: String): String;
Example:
AppendPathDelimiter('C:\TMT.5');
// returns 'C:\TMT.5\'
AppendPathDelimiter('C:\TMT.5\SAMPLES\');
// returns 'C:\TMT.5\SAMPLES\'
- 4.66.2.12. -