Created
October 24, 2013 05:26
-
-
Save Tatsh/7131812 to your computer and use it in GitHub Desktop.
Revisions
-
Tatsh created this gist
Oct 24, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ from os import chdir, getcwd from os.path import realpath class PushdContext: cwd = None original_dir = None def __init__(self, dirname): self.cwd = realpath(dirname) def __enter__(self): self.original_dir = getcwd() chdir(self.cwd) return self def __exit__(self, type, value, tb): chdir(self.original_dir) def pushd(dirname): return PushdContext(dirname) # Example use with pushd('./anfplaylists') as ctx: print(ctx.cwd, ctx.original_dir) print(getcwd())