Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'differently': 0.07; 'subject:file': 0.07; 'python': 0.09; 'errno': 0.09; 'ioerror': 0.09; 'open()': 0.09; 'throw': 0.09; 'cases': 0.15; 'file,': 0.15; "'w'": 0.16; 'cases)': 0.16; 'dismiss': 0.16; 'from:addr:timgolden.me.uk': 0.16; 'from:name:tim golden': 0.16; 'message-id:@timgolden.me.uk': 0.16; 'received:74.55.86': 0.16; 'received:74.55.86.74': 0.16; 'received:smtp.webfaction.com': 0.16; 'received:webfaction.com': 0.16; 'subject:windows': 0.16; 'tjg': 0.16; 'wrote:': 0.17; '(not': 0.20; 'permission': 0.20; 'file.': 0.20; 'trying': 0.21; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'wonder': 0.27; 'mode': 0.30; 'expect': 0.31; 'file': 0.32; 'not.': 0.32; 'received:192.168.100': 0.33; 'handle': 0.33; 'to:addr:python- list': 0.33; 'another': 0.33; 'version': 0.34; "can't": 0.34; 'open': 0.35; 'does': 0.37; 'two': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'application': 0.40; 'received:192.168': 0.40; 'your': 0.60; 'different': 0.63; 'from:addr:mail': 0.71; 'distinguish': 0.84; 'ali': 0.95 Date: Wed, 14 Nov 2012 10:02:45 +0000 From: Tim Golden User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Detect file is locked - windows References: <2af436e3-1336-42ae-aa2f-9e33135a3f2c@googlegroups.com> In-Reply-To: <2af436e3-1336-42ae-aa2f-9e33135a3f2c@googlegroups.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 1352887368 news.xs4all.nl 6856 [2001:888:2000:d::a6]:52119 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33320 On 14/11/2012 00:33, Ali Akhavan wrote: > I am trying to open a file in 'w' mode open('file', 'wb'). open() > will throw with IOError with errno 13 if the file is locked by > another application or if user does not have permission to open/write > to the file. What version of Python are you using? > > How can I distinguish these two cases ? Namely, if some application > has the file open or not. Can I ask what you expect to do differently in each of those cases? In other words, if you can't access the file, you can't access it. (Not to dismiss your question; I just wonder how you're going to handle the different cases) TJG