[pyar] NOVEDADES EXCLUSIVAS PARA PyAr!!!!

Guillermo Gonzalez guillo.gonzo en gmail.com
Vie Ene 6 19:52:28 ART 2012


2012/1/6 Lucio Torre <lucio.torre en gmail.com>:
> 2012/1/6 Facundo Batista <facundobatista en gmail.com>:
>> 2012/1/6 Roberto Alsina <ralsina en netmanagers.com.ar>:
>>
>>> Estaba el otro día haciendo un script tipo shell pero en python, y me
>>> encontré con un problema que en shell es mas facil: ir a un directorio,
>>> hacer algo, y despues volver.
>
>>    def __enter__(self):
>>        self.old_dir = os.getcwd()
>>        os.chdir(self.new_dir)
>>
>>    def __exit__(self, *_):
>>        os.chdir(self.old_dir)
>

Y tambien podes hacer algo asi (stdlib al rescate):

from contextlib import contextmanager

@contextmanager
def cd(path):
    old_dir = os.getcwd()
    os.chdir(path)
    yield
    os.chdir(old_dir)


Saludos!

--
Guillermo Gonzalez
<http://launchpad.net/~verterok>



More information about the pyar mailing list