Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to convert a path to a relative path in a powershell script. How do I do this using Powershell?

For example:

Path to convert: c:\documents\mynicefiles\afile.txt
Reference path:  c:\documents
Result:          mynicefiles\afile.txt

And

Path to convert: c:\documents\myproject1\afile.txt
Reference path:  c:\documents\myproject2
Result:          ..\myproject\afile.txt
share|improve this question
1  
You are not asking a question, only stating an intent. – driis Sep 12 '12 at 20:54

2 Answers

up vote 3 down vote accepted

Found something built in:

Resolve-Path -Relative

This returns the path relative to the current location. A simple usage:

$root = "c:\Users\Dave\"
$current = "c:\Users\Dave\Documents\"
$tmp = Get-Location; Set-Location $root; Resolve-Path -relative $current; Set-Location $tmp
share|improve this answer

Get-RelativePath seems to be a way to do that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.