Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed7.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 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=python.org; s=200901; t=1437418712; bh=Grx1VysRzi2myKRwfYiArkPspatRuguQVrlYJOmwNX8=; h=To:From:Subject:Date:References:In-Reply-To:From; b=mMy3t9/yBWMblb/KmaMTadwNwzkTRlmXe+S2J99wZus37fSQqoFJx/pjosB3IPBwB CyR2bt9Y9GA49cvBtADCwykUSEiEj5LcvIPexSClW+1B5CdG2yA/KK/SQFRglSmHoC GJzaw4IjsCOVPxyl0EFqZc0CPLotlcV5DkSUcVGA= X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; '+++': 0.03; 'modify': 0.04; 'performs': 0.07; 'rename': 0.07; 'closed.': 0.09; 'directory)': 0.09; 'exited': 0.09; 'os;': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.10; 'subject:not': 0.11; '"-c",': 0.16; '2.7:': 0.16; 'from:name:christian heimes': 0.16; 'operation,': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'written.': 0.16; 'wrote:': 0.16; 'from:addr:python.org': 0.18; 'unlike': 0.23; 'written': 0.24; 'header:In-Reply-To:1': 0.24; 'script': 0.25; "i've": 0.25; 'header:X-Complaints-To:1': 0.26; 'moved': 0.27; 'looks': 0.29; 'regular': 0.29; 'call.': 0.30; 'changed': 0.33; 'file': 0.34; 'server': 0.34; 'done': 0.35; 'expected': 0.35; 'instead': 0.36; 'event.': 0.36; 'tools,': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'being': 0.37; 'received:org': 0.37; 'files': 0.38; 'skip:o 20': 0.38; 'test': 0.39; 'does': 0.39; 'skip:e 20': 0.39; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'behavior': 0.61; 'charset:windows-1252': 0.62; 'our': 0.64; 'elsewhere': 0.66; 'touch': 0.66; 'received:79': 0.69; 'watched': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Christian Heimes Subject: Re: linux os.rename() not an actual rename? Date: Mon, 20 Jul 2015 20:58:24 +0200 References: <87d1zm64ua.fsf@elektro.pacujo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: p4fd27d67.dip0.t-ipconnect.de Openpgp: url=https://keybase.io/christianheimes/key.asc In-Reply-To: <87d1zm64ua.fsf@elektro.pacujo.net> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 31 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1437418714 news.xs4all.nl 2926 [2001:888:2000:d::a6]:55972 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:94246 On 2015-07-20 20:50, Marko Rauhamaa wrote: > "Jason H" : > >> I have a server process that looks (watches via inotify) for files to >> be moved (renamed) into a particular directory from elsewhere on the >> same filesystem. We do this because it is an atomic operation, and our >> server process can see the modify events of the file being written >> before it is closed. The rename functions as a 'completed' event. We >> have a python script that attempts to perform this behavior - to >> os.rename() a file into the watched directory after it is done being >> written. However unlike other tools, we don't see a proper 'rename' >> event. Instead we just see a 'changed' event. I've changed the >> implementation of the script to os.system('mv ...') and we get the >> expected 'rename' event. > > Don't know about inotify(). However, strace reveals that python3's > os.rename() performs a regular rename(2) system call. So does Python 2.7: $ touch test $ strace -e trace=file -- python -c 'import os; os.rename("test", "test2")' execve("/bin/python", ["python", "-c", "import os; os.rename(\"test\", \"te"...], [/* 76 vars */]) = 0 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 ... rename("test", "test2") = 0 +++ exited with 0 +++