Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'attempting': 0.04; 'subject:files': 0.09; 'am,': 0.13; 'wrote:': 0.15; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'message- id:@tim.thechases.com': 0.16; 'received:70.251': 0.16; 'received:dsl.rcsntx.swbell.net': 0.16; 'received:rcsntx.swbell.net': 0.16; 'received:swbell.net': 0.16; 'symbolic': 0.16; 'cc:addr:python-list': 0.16; 'cc:2**0': 0.21; 'cc:no real name:2**0': 0.22; 'header:In-Reply-To:1': 0.22; 'trying': 0.23; 'structure': 0.23; 'cc:addr:python.org': 0.30; 'cross': 0.32; 'header:User-Agent:1': 0.34; 'there': 0.34; 'fail': 0.34; "can't": 0.34; 'things': 0.34; 'using': 0.37; 'subject:: ': 0.38; 'something': 0.38; 'easier': 0.39; 'under': 0.39; 'peter': 0.62; 'links,': 0.64 Date: Tue, 02 Aug 2011 06:17:10 -0500 From: Tim Chase User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.18) Gecko/20110616 Thunderbird/3.1.11 MIME-Version: 1.0 To: loial Subject: Re: Hardlink sub-directories and files References: <3d2c3d3b-085e-4f3b-903d-726a31e607f4@b34g2000yqi.googlegroups.com> In-Reply-To: <3d2c3d3b-085e-4f3b-903d-726a31e607f4@b34g2000yqi.googlegroups.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - boston.accountservergroup.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tim.thechases.com X-Source: X-Source-Args: X-Source-Dir: 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 18 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1312288039 news.xs4all.nl 23902 [2001:888:2000:d::a6]:40058 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10725 On 08/02/2011 04:32 AM, loial wrote: > I am trying to hardlink all files in a directory structure using > os.link. > Or is there an easier way to hardlink everything in a directory > structure?. > > The requirement is for hard links, not symbolic links While Peter & Thomas gave good answers, also be aware that hard-links can't cross mount-points (an OS limitation). So if you have something mounted under the directory you're trying to hard-link-copy, attempting to create a hard-link will fail for things within that mount. -tkc