Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #32936
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Subject | Re: Read number of CSV files |
| Date | 2012-11-08 09:44 +0100 |
| Organization | None |
| References | <CAHRZm1stD9dLhMbQeT+QB00cn2r4xUQGifmwYaTiUVWHu0bvTQ@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3426.1352364301.27098.python-list@python.org> (permalink) |
Smaran Harihar wrote:
> I am able to read through a CSV File and fetch the data inside the CSV
> file but I have a really big list of CSV files and I wish to do the same
> particular code in all the CSV files.
>
> Is there some way that I can loops through all these files, which are in a
> single folder, and get my code to read the files?
import glob
import csv
def process(filename):
with open(filename, "rb") as f:
rows = csv.reader(f)
for row in rows:
... # whatever you want
for filename in glob.glob("/path/to/*.csv"):
process(filename)
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Read number of CSV files Peter Otten <__peter__@web.de> - 2012-11-08 09:44 +0100
csiph-web