This topic tells you about the Application Accelerator UniquePath
transform in Tanzu Application Platform (commonly known as TAP).
You can use the UniquePath
transform to ensure there are no path
conflicts between files transformed. You can often use this at the tail of a Chain.
UniquePath(CONFLICT-RESOLUTION)
Where CONFLICT-RESOLUTION
is the resolution strategy you want to use from the list in Available strategies.
The following example concatenates the file that was originally named DEPLOYMENT.md
to the file README.md
:
Include({"README.md"})
+ Include({"DEPLOYMENT.md"})
.RewritePath({rewriteTo: "README.md"})
UniquePath(Append)
UniquePath
uses a Conflict Resolution strategy to decide what to do when several input files use the same path
.