So powershell (and most languages) have an assignment by addition operator that works with string by adding the new string to the tail of the original
For example this:
$targetPath += "\*"
Will do the same thing as this:
$targetPath = "$targetPath\*"
Is there an operator that can do the same thing, but by prefixing the current string?
Of course, I can do the following, but I'm looking for something slightly terser
$targetPath = "Microsoft.PowerShell.Core\FileSystem::$targetPath"