PowerShell Cookbook

Search

Categories

 

On this page

Archive

Blogroll

Disclaimer
I work for Microsoft.

The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

RSS 2.0 | Atom 1.0 | CDF

Send mail to the author(s) E-mail

Total Posts: 222
This Year: 0
This Month: 0
This Week: 0
Comments: 536

Sign In

 Tuesday, July 18, 2006
Tuesday, July 18, 2006 11:55:01 PM (Pacific Daylight Time, UTC-07:00) ( )

One question that comes up frequently is, “Why does PowerShell not change its [System.Environment]::CurrentDirectory as I navigate around the shell?

One of the difficult aspects of this comes from the fact that PowerShell supports multiple pipelines of execution.  Although it’s not directly exposed yet, users will soon be able to suspend jobs to the background, and other concurrent tasks.

The current directory affects the entire process, so if we change the directory as you navigate around the shell, you risk corrupting the environment of jobs you have running in the background.

When you use filenames in .Net methods, the best practice is to use fully-qualified path names.  The Resolve-Path cmdlet makes this easy:

[C:\temp]
PS:37 > $reader = new-object System.Xml.XmlTextReader (Resolve-Path baseline.xml)
Suggestion: An alias for Resolve-Path is rvpa

[C:\temp]
PS:38 > $reader.BaseURI
file:///C:/temp/baseline.xml

If you wish to access a path that doesn’t already exist, use the Join-Path  cmdlet:

(Join-Path (Get-Location) newfile.txt)

Comments [1] | | # 
Tracked by:
"Export-Jpeg" (jachymko blog) [Trackback]
Thursday, August 03, 2006 7:33:19 AM (Pacific Daylight Time, UTC-07:00)
This reminds me of something I haven't yet figured out how to do. It's probably so simple I'll feel like an idiot once I see how to do it (that's why my last name is missing above - at least I'm the only person that will know that I'm an idiot).

How do you add a directory to the path? Back in the DOS days it was easy but it's not so obvious in Powershell.

That's not the only thing I can do in DOS but not in Powershell - here's another: How do you change file attributes? How do you change a read-only file to writable?

I LOVE Powershell and I hate to have to fall back to the DOS commands to do some of this stuff.
Steve
Name
E-mail
Home page

Comment (Some html is allowed: b, blockquote@cite, em, i, strike, strong, sub, super, u)  

Enter the code shown (prevents robots):