Episode 7 – Join-Path
Update: 2011-09-08
Description
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
Comments
In Channel



