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
#3
I use below code. Here, the there will be 4 levels (subfolders) so I use

Exammple: Rootfolder/project/cataegory after this I do not know folder names, but there will be 4 more subfolders and in the last folder my file exist.

My file name is: .Dailycollection.log

If file exist after this : Rootfolder/project/cataegory, then I want to capture full path of the file.
p = Path("D:\Mekala_Backupdata\*\*\*\*\")
csv_files = [csvfile for csvfile in p.iterdir() if csvfile.is_file() and csvfile.suffix == '*.Dailycollection.log']
for filename in csv_files:
print(filename)
Reply


Messages In This Thread
RE: Read all csv files, and store the last line from each folder - by SriRajesh - Jan-16-2020, 05:17 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 610 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Rename files in a folder named using windows explorer hitoxman 3 786 Aug-02-2023, 04:08 PM
Last Post: deanhystad
  Rename all files in a folder hitoxman 9 1,557 Jun-30-2023, 12:19 AM
Last Post: Pedroski55
  Python Serial: How to read the complete line to insert to MySQL? sylar 1 856 Mar-21-2023, 10:06 PM
Last Post: deanhystad
  How to read in mulitple files efficiently garynewport 3 917 Jan-27-2023, 10:44 AM
Last Post: DeaD_EyE
  How to loop through all excel files and sheets in folder jadelola 1 4,575 Dec-01-2022, 06:12 PM
Last Post: deanhystad
  python gzip all files from a folder mg24 3 4,127 Oct-28-2022, 03:59 PM
Last Post: mg24
  delete all files and subdirectory from a main folder mg24 7 1,661 Oct-28-2022, 07:55 AM
Last Post: ibreeden
  Read directory listing of files and parse out the highest number? cubangt 5 2,444 Sep-28-2022, 10:15 PM
Last Post: Larz60+
  Merge all json files in folder after filtering deneme2 10 2,419 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