Python Forum
Read Multiples Text Files get specific lines based criteria
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read Multiples Text Files get specific lines based criteria
#6
Hi

Finaly a solve this.
import glob, os
import pandas as pd

path = 'C:\\Users\\zinho\\Desktop\\Projet_Txt\\*.txt'
f_names = glob.glob(path)
lista = []


for file in f_names:
    try:
        with open(file, 'r') as f:
            
            try:
                for line in f:
                    if line[:6] == '|D100|':
                        lista.append(line)

            except UnicodeDecodeError:
                pass

    except IOError as exc:
        if exc.errno != errno.EISDIR:
            raise


df = pd.DataFrame(lista)
df.to_csv('C:\\Users\\zinho\\Downloads\\Master.csv', index=False, header=False)
Reply


Messages In This Thread
RE: Read Multiples Text Files get specific lines based criteria - by zinho - May-19-2020, 12:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Copy Paste excel files based on the first letters of the file name Viento 2 451 Feb-07-2024, 12:24 PM
Last Post: Viento
  filtering a list of dictionary as per given criteria jss 5 695 Dec-23-2023, 08:47 AM
Last Post: Gribouillis
  Move Files based on partial Match mohamedsalih12 2 832 Sep-20-2023, 07:38 PM
Last Post: snippsat
  Color a table cell based on specific text Creepy 11 2,008 Jul-27-2023, 02:48 PM
Last Post: deanhystad
  Making a question answering chatbot based on the files I upload into python. Joejones 1 1,234 May-19-2023, 03:09 PM
Last Post: deanhystad
  Read text file, modify it then write back Pavel_47 5 1,624 Feb-18-2023, 02:49 PM
Last Post: deanhystad
  python print all files which contain specific word in it mg24 5 1,261 Jan-27-2023, 11:20 AM
Last Post: snippsat
  How to read in mulitple files efficiently garynewport 3 899 Jan-27-2023, 10:44 AM
Last Post: DeaD_EyE
  python move specific files from source to destination including duplicates mg24 3 1,103 Jan-21-2023, 04:21 AM
Last Post: deanhystad
  azure TTS from text files to mp3s mutantGOD 2 1,713 Jan-17-2023, 03:20 AM
Last Post: mutantGOD

Forum Jump:

User Panel Messages

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