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 expect this little powershell one liner to echo a full path to foo.txt, where the directory is my current directory.

[System.IO.Path]::GetFullPath(".\foo.txt")

But it's not. It prints...

C:\Documents and Settings\Administrator\foo.txt

I am not in the $home directory. Why is it resolving there?

share|improve this question
2  
you should be using Resolve-Path within powershell. – x0n Nov 2 '10 at 14:47

2 Answers

up vote 10 down vote accepted

[System.IO.Path] is using the shell process' current directory. You can get the absolute path with the Resolve-Path cmdlet:

Resolve-Path .\foo.txt
share|improve this answer
This behaviour is unintuitive and inconsistent with every other shell-scripting system on the planet. Of course. Thank you StackOverflow users like Shay, for helping us mere humans understand Powershell! – Warren P Nov 12 '12 at 12:19
The drawback of Resolve-Path is that it can resolve only paths that actually exist. – herzbube Apr 11 at 15:12

According to the documentation for GetFullPath, it uses the current working directory to resolve the absolute path. The powershell current working directory is not the same as the current location:

PS C:\> [System.IO.Directory]::GetCurrentDirectory()
C:\Documents and Settings\user
PS C:\> get-location

Path
----
C:\

I suppose you could use SetCurrentDirectory to get them to match:

PS C:\> [System.IO.Directory]::SetCurrentDirectory($(get-location))
PS C:\> [System.IO.Path]::GetFullPath(".\foo.txt")
C:\foo.txt
share|improve this answer
I have my prompt function do this, updating the current working directory. – JasonMArcher Nov 8 '10 at 6:52
This will only work if the current location is in the filesystem. Check $PWD.Provider.Name first. – Roger Lipscombe Jun 28 '12 at 13:51
correct way without provider name checking: [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath – Denis Bakharev Apr 30 at 16:38

protected by sixlettervariables Oct 11 '11 at 13:53

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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