May 10th, 2014

PowerTip: Use PowerShell to Find Grandparent of Path

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to easily find the grandparent of a path.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find a directory that is two levels up in a nested path?

Hey, Scripting Guy! Answer Use the Split-Path cmdlet and pipe the results to Split-Path. In the following example,
          the path to a Windows PowerShell module is split, and then the parent of that path is split again:

(get-module -l)[0].Path | split-path -Parent | Split-Path -Parent

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.

Feedback