JVCL Help:TJvCustomAppStorage.ConcatPaths

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Combines paths into one (canonical) path.


Pascal

 classfunctionConcatPaths(constPaths: arrayofstring): string;


Parameters

Parameters Description
const Paths: array of string List of paths to combine into one.


Description

ConcatPaths will combine the specified paths into a single path. The resulting path will be in canonical form (relative folder specifications are resolved to their final path).
Below is a table of examples with different paths and their resulting value:

Paths Result
================================================= ================================
'MyFolder1' and 'MyFolder2' MyFolder1MyFolder2
'MyFolder1MyFolder2' and '..MyFolder3' MyFolder1MyFolder3
'MyFolder1MyFolder2' and 'MyFolder4' MyFolder4
'MyFolder1MyFolder2', 'MyFolder4', MyFolder5MyFolder9MyFolder11 'MyFolder5MyFolder6MyFolder7MyFolder8', '...MyFolder9MyFolder10' and '..MyFolder11'


About

Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page