[pyar] Duda con Path para leer archivo

Roberto Bozzacchi robbie en metasigno.com
Lun Feb 6 16:46:48 ART 2012


Gente, no se si estoy escribiendo mal el path o bien cual es el error al
querer leer un archivo con Python:

Opción 1:
>>> with open('C:\Files\CON_SI\185-01.txt') as fh:
    for linea in fh:
        print(linea)

Traceback (most recent call last):
  File "<pyshell#76>", line 1, in <module>
    with open('C:\Files\CON_SI\185-01.txt') as fh:
IOError: [Errno 22] invalid mode ('r') or filename:
'C:\\Files\\CON_SI\x0185-01.txt'


Opción 2:
>>> with open('C:/Files/CON_SI/185-01.txt') as fh:
    for linea in fh:
        print(linea)

Traceback (most recent call last):
  File "<pyshell#80>", line 1, in <module>
    with open('C:/Files/CON_SI/185-01.txt') as fh:
IOError: [Errno 2] No such file or directory: 'C:/Files/CON_SI/185-01.txt'


En ambos casos me da error pero en el segundo caso es como que las barras
invertidas tipo fecha '/' no le gusta...

Estoy usando Python 2.7

-- 

Robbie Bozzacchi
Metasigno Brain
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20120206/2616819f/attachment.html>


More information about the pyar mailing list