Table of Contents

Search

  1. Preface
  2. Workflows
  3. Workflow Variables
  4. Workflow Parameters
  5. Cluster Tasks
  6. Command Task
  7. Human Task
  8. Mapping Task
  9. Notification Task
  10. Gateways
  11. Workflow Recovery
  12. Workflow Administration

Developer Workflow Guide

Developer Workflow Guide

Escape Characters in Directory Paths

Escape Characters in Directory Paths

If you use a workflow variable name within a directory path, you can use the escape character before the backslashes in the directory path.
The following table provides examples using the escape character with a variable name in a directory path:
Syntax in String Field
Output Value
Description
C:\${var:myVariable}
C:${var:myVariable}
The Data Integration Service displays the variable name as a string.
C:\\${var:myVariable}
C:\test
The Data Integration Service reads the backslash as a regular character and resolves the variable to its value.
C:\temp\\${var:myVariable}
C:\temp\test
The Data Integration Service reads the backslash as a regular character and resolves the variable to its value. No escape character is required for the first backslash.
C:\\\${var:myVariable}
C:\${var:myVariable}
The Data Integration Service reads the backslash as a regular character and displays the variable name as a string.
C:\\\\${var:myVariable}
C:\\test
The Data Integration Service reads two backslashes as regular characters and resolves the variable to its value.

0 COMMENTS

We’d like to hear from you!