Download the MP3 Podcast In this episode we look at how you can carve up strings that make up strings of text that make up paths with Split-Path: By default – returns parent path Split-Path c:\users\tome c:\user Leaf – returns the end of the path (file or directory name) Split-Path c:\users\tome -Leaf tome NoQualifier – removes […]

Download the MP3 Podcast


In this episode we look at how you can carve up strings that make up strings of text that make up paths with Split-Path:


By default – returns parent path


Split-Path c:\users\tome
c:\user

Leaf – returns the end of the path (file or directory name)


Split-Path c:\users\tome -Leaf
tome

NoQualifier – removes the drive letter from the path


Split-path hklm:\software\microsoft -NoQualifier
\software\microsoft

Qualifier – returns just the drive letter


Split-path c:\users\tome
c:\

IsAbsolute – returns true if it is an absolute path, not a relative path.


Resolve – evaluates the string path to a real path


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