vote up 7 vote down star
2

How do I write a decorator that restores the current working directory to what it was before the decorated function was called? In other words, if I use the decorator on a function that does an os.chdir(), the cwd will not be changed after the function is called.

flag

1  
And you asked the question and answered it yourself in 3 minutes because…? Obviously you had the answer (which hardly can be improved) even before asking the question. I'd really like to know your reasoning. – ΤΖΩΤΖΙΟΥ Oct 3 '08 at 22:37
FAQ says "It's also perfectly fine to ask and answer your own programming question". It lists three required criteria for questions, and "you don't know the answer" isn't one of them. – Steve Jessop Oct 3 '08 at 22:56
I had written the code and then it turned out (after refactoring) that I didn't need it. I figured stackoverflow is a good place to archive it, and perhaps others can benefit. – Daryl Spitzer Oct 3 '08 at 23:31
Since we're quoting the FAQ: “…but pretend you're on Jeopardy: phrase it in the form of a question.”, so your answer should be like “I'm doing this, do you think it's ok”, or similar, not “How do I…” (implying you don't know the answer) and then “(answer) (way to use it)”. (cont…) – ΤΖΩΤΖΙΟΥ Oct 4 '08 at 0:00
We're programmers and our egos are large; as long as they don't collide, the world is fine. Didn't you wonder at all why there's the Jeopardy pretention clause in the FAQ? Accordingly to your question/answer pair, I leave the answer to that as an exercise for the student, if you catch my drift. ;) – ΤΖΩΤΖΙΟΥ Oct 4 '08 at 0:04
show 4 more comments

3 Answers

vote up 11 vote down check

The answer for a decorator has been given; it works at the function definition stage as requested.

With Python 2.5+, you also have an option to do that at the function call stage using a context manager:

from __future__ import with_statement # needed for 2.5 ≤ Python < 2.6
import contextlib, os

@contextlib.contextmanager
def remember_cwd():
    curdir= os.getcwd()
    try: yield
    finally: os.chdir(curdir)

which can be used if needed at the function call time as:

print "getcwd before:", os.getcwd()
with remember_cwd():
    walk_around_the_filesystem()
print "getcwd after:", os.getcwd()

It's a nice option to have.

EDIT: I added error handling as suggested by codeape. Since my answer has been voted up, it's fair to offer a complete answer, all other issues aside.

link|flag
And it can be used to write the aforementioned decorator :) – Constantin Oct 3 '08 at 23:25
Needs error handling, see my answer. – codeape Oct 4 '08 at 11:30
vote up 7 vote down

The given answers fail to take into account that the wrapped function may raise an exception. In that case, the directory will never be restored. The code below adds exception handling to the previous answers.


def preserve_cwd(function):
   def decorator(*args, **kwargs):
      cwd = os.getcwd()
      try:
          return function(*args, **kwargs)
      finally:
          os.chdir(cwd)
   return decorator

@contextlib.contextmanager
def remember_cwd():
    curdir = os.getcwd()
    try:
        yield
    finally:
        os.chdir(curdir)

link|flag
vote up 4 vote down
def preserve_cwd(function):
   def decorator(*args, **kwargs):
      cwd = os.getcwd()
      result = function(*args, **kwargs)
      os.chdir(cwd)
      return result
   return decorator

Here's how it's used:

@preserve_cwd
def test():
  print 'was:',os.getcwd()
  os.chdir('/')
  print 'now:',os.getcwd()

>>> print os.getcwd()
/Users/dspitzer
>>> test()
was: /Users/dspitzer
now: /
>>> print os.getcwd()
/Users/dspitzer
link|flag
Needs error handling, see my answer. – codeape Oct 4 '08 at 11:31

Your Answer

Get an OpenID
or

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