Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python?': 0.05; 'received:verizon.net': 0.07; 'terry': 0.07; 'adjusting': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'subject:python': 0.11; 'am,': 0.12; 'joshi': 0.16; 'reedy': 0.16; 'subject:command': 0.16; 'wrote:': 0.16; 'jan': 0.19; 'header:In- Reply-To:1': 0.22; 'module,': 0.23; 'path,': 0.23; 'command': 0.24; 'import': 0.28; 'confused': 0.30; 'this.': 0.32; 'to:addr :python-list': 0.33; 'header:User-Agent:1': 0.34; 'staying': 0.34; 'header:X-Complaints-To:1': 0.35; 'doing': 0.36; 'but': 0.37; 'think': 0.38; 'received:org': 0.38; 'steven': 0.38; 'some': 0.38; 'subject:: ': 0.39; 'header:Mime-Version:1': 0.39; 'absolute': 0.39; 'to:addr:python.org': 0.39; 'subject: (': 0.39; 'or,': 0.40; 'where': 0.40; 'carry': 0.62; 'carefully': 0.68 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: what's the command for (cd ..) in python Date: Fri, 09 Sep 2011 13:35:37 -0400 References: <4e6a0e8e$0$29967$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-74-109-121-73.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0) Gecko/20110812 Thunderbird/6.0 In-Reply-To: <4e6a0e8e$0$29967$c3e8da3$5496439d@news.astraweb.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1315590009 news.xs4all.nl 2465 [2001:888:2000:d::a6]:49945 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:13032 On 9/9/2011 9:03 AM, Steven D'Aprano wrote: > kaustubh joshi wrote: > >> Hello friends, >> How do we carry out the command "*cd ..*" in >> python? > > import os > os.chdir('..') > > But think carefully before doing this. Some functions may be confused if you > change directories while they are running. You may be better off staying in > the same directory, and adjusting the path names to the files as you work > with them. Or, use it once at the top of the main module, with an absolute path, to make sure you start at a known place where you want to start. -- Terry Jan Reedy