Python Forum
Read all csv files, and store the last line from each folder
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read all csv files, and store the last line from each folder
#1
Hi,
I want to read all csv files and read each file and capture last line form each file.
I use the below code, but I struck.

import os
from glob import glob
PATH = "D:\data\project\*\*\InputFiles"
EXT = "*.csv"
all_csv_files = [file
                 for path, subdir, files in os.walk(PATH)
                 for file in glob(os.path.join(path, EXT))]
print(all_csv_files)
Reply


Messages In This Thread
Read all csv files, and store the last line from each folder - by SriRajesh - Jan-16-2020, 12:02 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 560 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Rename files in a folder named using windows explorer hitoxman 3 753 Aug-02-2023, 04:08 PM
Last Post: deanhystad
  Rename all files in a folder hitoxman 9 1,506 Jun-30-2023, 12:19 AM
Last Post: Pedroski55
  Python Serial: How to read the complete line to insert to MySQL? sylar 1 832 Mar-21-2023, 10:06 PM
Last Post: deanhystad
  How to read in mulitple files efficiently garynewport 3 894 Jan-27-2023, 10:44 AM
Last Post: DeaD_EyE
  How to loop through all excel files and sheets in folder jadelola 1 4,513 Dec-01-2022, 06:12 PM
Last Post: deanhystad
  python gzip all files from a folder mg24 3 4,033 Oct-28-2022, 03:59 PM
Last Post: mg24
  delete all files and subdirectory from a main folder mg24 7 1,630 Oct-28-2022, 07:55 AM
Last Post: ibreeden
  Read directory listing of files and parse out the highest number? cubangt 5 2,373 Sep-28-2022, 10:15 PM
Last Post: Larz60+
  Merge all json files in folder after filtering deneme2 10 2,371 Sep-18-2022, 10:32 AM
Last Post: deneme2

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020