Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.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.029 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'received:209.85.213.46': 0.09; 'received:mail-yw0-f46.google.com': 0.09; 'subject:not': 0.11; 'slightly': 0.14; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'localhost': 0.16; 'roy': 0.16; 'subject:Why': 0.16; 'wed,': 0.18; 'wrote:': 0.19; '\xa0if': 0.21; 'header:In- Reply-To:1': 0.22; "i've": 0.24; 'message-id:@mail.gmail.com': 0.24; 'disk': 0.27; 'host': 0.27; 'initiating': 0.28; 'link,': 0.28; 'protocol.': 0.28; 'remote': 0.31; 'done.': 0.31; 'received:209.85': 0.32; 'received:google.com': 0.32; 'file': 0.33; 'pm,': 0.34; 'two': 0.35; 'to:addr:python-list': 0.35; 'done': 0.35; 'received:209': 0.35; 'end': 0.35; 'depends': 0.35; 'subject:?': 0.35; 'there': 0.36; 'but': 0.37; 'subject:: ': 0.37; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; '2012': 0.62; 'tricks': 0.65; 'smith': 0.71; 'transfer': 0.75; '(ie': 0.84; 'coolest': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=hmKZFZuoSoo9mNSlZ0jI9JnFvkN15cTB41dGDyUS4YI=; b=k6AH5ygcd01aLoMvMA9eurLrI4mxrYP5tCQjkhrpb1YZZLaZxXk63yQ4GX4H+T04Ar JdHWx7dNpWqEgdyJHemjLR8Bhp9NfdiUv5YlXxUweY0N+0EOSV/nuZ0RS9RPy1P0VTJJ hZz38Ky1sF7Wwk6DFgQEaxYPXmW8M3v7e8NtgjMKaMt3GLMo+6nhVMpitq5yrDp8sxR5 c+lt8aDVKa0o/uJCAtoj0wnYJzOT6jNesXfaCS8zlDF7qEpoFZcxDL+rvh/U21jof93J 09R/tjY0Q8+aQOTpkNKUM3BX+Vp5UZ4mSTtGVc2xoFhj6U3WAxSfcoTnuGP9dnFPQsof ZrRw== MIME-Version: 1.0 In-Reply-To: References: <38b3fc48-1d05-4373-b32e-64da95173864@pz2g2000pbc.googlegroups.com> <4f7be1e8$0$29999$c3e8da3$5496439d@news.astraweb.com> Date: Wed, 4 Apr 2012 22:17:20 +1000 Subject: Re: No os.copy()? Why not? From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1333541844 news.xs4all.nl 6842 [2001:888:2000:d::a6]:42457 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:22660 On Wed, Apr 4, 2012 at 10:08 PM, Roy Smith wrote: > Slightly off-topic, but are there file systems these days which support > off-line copying? =A0If I have a disk at the other end of a network link, > it would be nice to tell the disk to copy a file and tell me when it's > done. Depends on your network protocol. One of the coolest and oldest tricks with FTP is initiating a file transfer from one remote host to another; I've never done it but it ought to work with localhost (ie two sessions to the same host). ChrisA