Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #22627
| Path | csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <darcy@druid.net> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.002 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'module,': 0.05; 'def': 0.06; 'python': 0.09; '425': 0.09; 'command.': 0.09; 'portable': 0.09; 'cc:addr:python-list': 0.10; 'subject:not': 0.11; 'equivalent': 0.12; 'command,': 0.16; 'equivalents': 0.16; 'im:': 0.16; 'subject:Why': 0.16; 'type:': 0.16; 'shell': 0.18; 'wrote:': 0.19; 'voting': 0.21; 'header:In-Reply-To:1': 0.22; 'skip:" 30': 0.23; "haven't": 0.24; 'cc:2**0': 0.26; 'unix': 0.26; 'header :User-Agent:1': 0.26; 'skip:> 10': 0.27; 'cc:no real name:2**0': 0.27; 'cc:addr:python.org': 0.28; 'there.': 0.28; 'source': 0.29; "i'm": 0.29; 'code': 0.32; 'method': 0.33; 'subject:?': 0.35; 'why': 0.37; 'subject:: ': 0.37; 'anything': 0.38; 'too': 0.39; 'received:net': 0.60; 'john': 0.64; 'child,': 0.84; 'democracy': 0.84; 'received:98.158': 0.84; 'incredibly': 0.96 |
| Date | Tue, 03 Apr 2012 15:46:31 -0400 |
| From | D'Arcy Cain <darcy@druid.net> |
| User-Agent | Mozilla/5.0 (X11; NetBSD amd64; rv:11.0) Gecko/20120330 Thunderbird/11.0 |
| MIME-Version | 1.0 |
| To | john_ladasky@sbcglobal.net |
| Subject | Re: No os.copy()? Why not? |
| References | <38b3fc48-1d05-4373-b32e-64da95173864@pz2g2000pbc.googlegroups.com> |
| In-Reply-To | <38b3fc48-1d05-4373-b32e-64da95173864@pz2g2000pbc.googlegroups.com> |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 7bit |
| Cc | python-list@python.org |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1290.1333482412.3037.python-list@python.org> (permalink) |
| Lines | 22 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1333482412 news.xs4all.nl 6857 [2001:888:2000:d::a6]:59793 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:22627 |
Show key headers only | View raw
On 03/28/12 16:12, John Ladasky wrote:
> I'm looking for a Python (2.7) equivalent to the Unix "cp" command.
> Since the equivalents of "rm" and "mkdir" are in the os module, I
> figured I look there. I haven't found anything in the documentation.
> I am also looking through the Python source code in os.py and its
> child, posixfile.py.
cp is not a system command, it's a shell command. Why not just use the
incredibly simple and portable
>>>open("outfile", "w").write(open("infile").read())
put it into a method if you find that too much to type:
def cp(infile, outfile):
open(outfile, "w").write(open(infile).read())
--
D'Arcy J.M. Cain <darcy@druid.net> | Democracy is three wolves
http://www.druid.net/darcy/ | and a sheep voting on
+1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner.
IM: darcy@Vex.Net
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
No os.copy()? Why not? John Ladasky <john_ladasky@sbcglobal.net> - 2012-03-28 13:12 -0700
Re: No os.copy()? Why not? alex23 <wuwei23@gmail.com> - 2012-03-28 21:50 -0700
Re: No os.copy()? Why not? John Ladasky <john_ladasky@sbcglobal.net> - 2012-03-30 02:25 -0700
Re: No os.copy()? Why not? Ian Kelly <ian.g.kelly@gmail.com> - 2012-04-02 14:48 -0600
Re: No os.copy()? Why not? HoneyMonster <someone@someplace.invalid> - 2012-04-02 21:11 +0000
Re: No os.copy()? Why not? Thomas Rachel <nutznetz-0c1b6768-bfa9-48d5-a470-7603bd3aa915@spamschutz.glglgl.de> - 2012-04-03 08:24 +0200
Re: No os.copy()? Why not? John Ladasky <john_ladasky@sbcglobal.net> - 2012-04-03 02:34 -0700
Re: No os.copy()? Why not? Thomas Rachel <nutznetz-0c1b6768-bfa9-48d5-a470-7603bd3aa915@spamschutz.glglgl.de> - 2012-04-04 14:30 +0200
Re: No os.copy()? Why not? Ian Kelly <ian.g.kelly@gmail.com> - 2012-04-03 10:29 -0600
Re: No os.copy()? Why not? D'Arcy Cain <darcy@druid.net> - 2012-04-03 15:46 -0400
Re: No os.copy()? Why not? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-04-04 05:53 +0000
Re: No os.copy()? Why not? Chris Angelico <rosuav@gmail.com> - 2012-04-04 18:37 +1000
Re: No os.copy()? Why not? Steve Howell <showell30@yahoo.com> - 2012-04-04 08:15 -0700
Re: No os.copy()? Why not? Alain Ketterlin <alain@dpt-info.u-strasbg.fr> - 2012-04-04 11:22 +0200
Re: No os.copy()? Why not? Roy Smith <roy@panix.com> - 2012-04-04 08:14 -0400
Re: No os.copy()? Why not? Nobody <nobody@nowhere.com> - 2012-04-04 20:37 +0100
Re: No os.copy()? Why not? Roy Smith <roy@panix.com> - 2012-04-04 08:08 -0400
Re: No os.copy()? Why not? Chris Angelico <rosuav@gmail.com> - 2012-04-04 22:17 +1000
Re: No os.copy()? Why not? Tycho Andersen <tycho@tycho.ws> - 2012-04-03 15:10 -0500
Re: Re: No os.copy()? Why not? Evan Driscoll <driscoll@cs.wisc.edu> - 2012-04-03 15:21 -0500
csiph-web