Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39231

IOerror : need urgent help

Date 2013-02-19 16:27 +0100
Subject IOerror : need urgent help
From inshu chauhan <insideshoes@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.2030.1361288031.2939.python-list@python.org> (permalink)

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Here is my attempt to merge 10 files stored in a folder into a single file :

import csv

with open("C:\Users\inshu.chauhan\Desktop\test.arff", "w") as w:
    writer = csv.writer(w)
    for f in glob.glob("C:\Users\inshu.chauhan\Desktop\For
Model_600\*.arff"):
        rows = open(f, "r").readlines()
        writer.writerows(rows)


Error:

Traceback (most recent call last):
  File "C:\Users\inshu.chauhan\Desktop\Mergefiles.py", line 3, in <module>
    with open("C:\Users\inshu.chauhan\Desktop\test.arff", "w") as w:
IOError: [Errno 22] invalid mode ('w') or filename:
'C:\\Users\\inshu.chauhan\\Desktop\test.arff'

Why my programme is not working ?? :(

Thanks in Advance !!

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

IOerror : need urgent help inshu chauhan <insideshoes@gmail.com> - 2013-02-19 16:27 +0100

csiph-web