Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'mrab': 0.05; 'string.': 0.05; '(python': 0.07; 'subject:file': 0.07; 'subject:skip:s 10': 0.07; '(unicode': 0.09; 'truncated': 0.09; 'python': 0.11; 'windows': 0.15; 'codec': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'i.e': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'party)': 0.16; 'received:192.168.1.4': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'skip:u 50': 0.16; 'skip:u 60': 0.16; 'string:': 0.16; 'syntaxerror:': 0.16; 'subject:python': 0.16; 'exception': 0.16; 'wrote:': 0.18; 'library': 0.18; 'all,': 0.19; 'aug': 0.22; 'to:name:python-list@python.org': 0.22; 'header:User- Agent:1': 0.23; 'bytes': 0.24; 'exists': 0.24; 'unicode': 0.24; 'handling': 0.26; 'header:In-Reply-To:1': 0.27; 'character': 0.29; "doesn't": 0.30; '(which': 0.31; 'getting': 0.31; "skip:' 10": 0.31; 'file': 0.32; 'raw': 0.33; 'third': 0.33; 'problem': 0.35; "can't": 0.35; 'received:84': 0.35; 'but': 0.35; 'thanks': 0.36; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'how': 0.40; 'even': 0.60; 'read': 0.60; 'mentioned': 0.61; 'first': 0.61; 'name': 0.63; 'happen': 0.63; 'special': 0.74; 'fortunately,': 0.84; 'replay': 0.84; 'treating': 0.84 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=LOXoQfm9 c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=u9EReRu7m0cA:10 a=tws551RkLzcA:10 a=uhsKNJJYFc0A:10 a=ihvODaAuJD4A:10 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=nUWZ4rD72daUPp-pw7wA:9 a=QEXdDO2ut3YA:10 a=u2yh8jPBKaUA:10 X-AUTH: mrabarnett:2500 Date: Tue, 19 Aug 2014 14:21:25 +0100 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: "python-list@python.org" Subject: Re: python scikits.audiolab Sndfile special chars in file name References: <53F32F8E.6010502@mrabarnett.plus.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit 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: 47 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1408454486 news.xs4all.nl 2851 [2001:888:2000:d::a6]:35927 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:76565 On 2014-08-19 13:14, Furqan wasi wrote: > > Getting this > > file = ur"C:\Users\Furqan\Desktop\查找問題Reference\1.wav" > SyntaxError: (unicode error) 'rawunicodeescape' codec can't decode > bytes in position 2-3: truncated \uXXXX > Ouch! That's Python 2 treating \U as the start of a Unicode escape, even though it's in a raw string. That doesn't happen in Python 3 (which is what I use nowadays). Fortunately, Windows will accept / instead of \ in paths, which also means that you don't have to make it a raw string: file = u"C:/Users/Furqan/Desktop/查找問題Reference/1.wav" > > On Tue, Aug 19, 2014 at 4:05 PM, MRAB > wrote: > > On 2014-08-19 09:05, Furqan wasi wrote: > > *Hi Mark and all, * > > > Thanks for the replay i appreciate your help but the > problem i > have is not with the FileNotFoundError exception handling > because the > file exists but the problem is that the library libsndfile/Sndfile > (python third party) which is child class/module of > scikits.audiolab > (python third party) is not reading file with special > character in its > path and name , i need some help to in how to make library > libsndfile/Sndfile to read file with special character in it i.e > C:\Users\Furqan\Desktop\test\查找問題daw\查找問題d.wav, as i > mentioned > in my first email > > I recommend that you use Unicode strings instead of bytestrings: > > track1 = ur'C:\Users\Furqan\Desktop\test\查找問題daw\查找問題d.wav' >