PowerShell Map Array

$a = @("file1.txt","file2.txt")
$b = "c:\temp\"
$c = $a | % { $b + $_ }
Xenophobic Xenomorph