Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Thorsten Kampe Newsgroups: comp.lang.python Subject: Re: Python 2.7 and cmd on Windows 7 64 (files lost) Date: Thu, 23 Jun 2011 10:08:45 +0200 Lines: 14 Message-ID: References: <4e02de32$0$30749$ba4acef3@reader.news.orange.fr> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: individual.net jPTBVL/oCKhaxFJEdTqQwAbqldUkBL3dsK44dCXpBbB2PvxBY= Cancel-Lock: sha1:kourPxt1Wp5MAWiHxUkMVGnLpUk= User-Agent: MicroPlanet-Gravity/3.0.4 Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:8281 * Tim Golden (Thu, 23 Jun 2011 08:31:26 +0100) > > Certain commands, including "dir" and "copy" are not executables > in their own right, but merely subcommands of cmd.exe. Right, "internal commands". > You've got two options in Python: > > os.system (r"cmd /c dir c:\windows") os.system automatically runs a shell (cmd) - see the documentation. Thorsten