Download the MP3 PodcastIn this episode we look at how you can easily concatenate paths with Join-Path. $dir = 'C:\users' $child = 'tome' Join-Path $dir $child c:\users\tome Join-Path c:,d: NewDir c:\NewDir d:\NewDir Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org

Download the MP3 PodcastIn this episode we look at how you can easily concatenate paths with Join-Path.


$dir = 'C:\users'
$child = 'tome'
Join-Path $dir $child
c:\users\tome

Join-Path c:,d: NewDir
c:\NewDir
d:\NewDir

Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org