• <GetStart>
  • CSPro User's Guide
    • The CSPro System
    • Data Dictionary Module
    • The CSPro Language
    • Data Entry Module
    • Batch Editing Applications
    • Tabulation Applications
    • Data Sources
    • CSPro Statements and Functions
      • Statement Format Symbols
      • Alphabetical List of Functions and Statements
      • List of Reserved Words
      • Deprecated Features
      • Declaration Statements
      • Symbol Functions
      • Item Functions
      • Array Object
      • Audio Object
      • Barcode and QR Codes
      • Case Object
      • Document Object
      • File Object
      • Freq Object
      • Geometry Object
      • HashMap Object
      • Image Object
      • List Object
      • Map Object
      • Path
        • Path Namespace
        • Path.concat Function
        • Path.getDirectoryName Function
        • Path.getExtension Function
        • Path.getFileName Function
        • Path.getFileNameWithoutExtension Function
        • Path.getRelativePath Function
        • Path.selectFile Function
      • Pff Object
      • SystemApp Object
      • ValueSet Object
      • Program Control Statements
      • Assignment Statements
      • Data Entry Statements and Functions
      • Batch Edit Statements
      • Numeric Functions
      • String Functions
      • Multiple Occurrence Functions
      • General Functions
      • Date and Time Functions
      • External File Functions
      • Synchronization Functions
    • Templated Reporting System
    • HTML and JavaScript Integration
    • Action Invoker
    • Appendix
  • <CSEntry>
  • <CSBatch>
  • <CSTab>
  • <DataViewer>
  • <TextView>
  • <TblView>
  • <CSFreq>
  • <CSDeploy>
  • <CSPack>
  • <CSDiff>
  • <CSConcat>
  • <Excel2CSPro>
  • <CSExport>
  • <CSIndex>
  • <CSReFmt>
  • <CSSort>
  • <ParadataConcat>
  • <ParadataViewer>
  • <CSCode>
  • <CSDocument>
  • <CSView>
  • <CSWeb>

Path.concat Function

Format
s = Path.concat(path_string1ʃ, ..., path_stringNʅ);
Description
The Path.concat function concatenates the values of multiple string expressions (path_string1 + ... + path_stringN) into one string representing a file path. The first argument can be either a string expression or one of the path types documented in the pathname function. The combined paths are returned as an absolute, not relative, path.
Return Value
The function returns the concatenated path string.
Example
string image_filename = Path.concat(Application, "../Images", maketext("%v%v.jpg", CLUSTER, HHNO));
See also: Path Namespace, PathName Function, Concat Function