简体   繁体   中英

How to unzip all folders/files that end in .zip and extract “file.txt” file from each zipped folder

My code currently unzips one zip folder and finds the file called file.txt and extracts it. Now I need to unzip multiple folders that have the extension .zip. I have tried to use code similar to what I need it to do but the problem is that now I have to find a file called file.txt in each of those .zip folders and extract that file only . Also to store file.txt into a separate folder that has the same name where it came from. Thank you in advance for your time.

    import re
    import os
    from zipfile import ZipFile
    def pain():

    print("\t\t\tinput_files.zip has been unzipped")
    with ZipFile('input_files.zip', 'r') as zipObj:
        zipObj.extractall()
        listOfFileNames = zipObj.namelist()
        for fileName in listOfFileNames:
            if fileName.endswith('.txt'):
                zipObj.extract(fileName, 'storage')


    outfile = "output2.txt"                 #this will be the filename that the code will write to 
    baconFile = open(outfile,"wt")
    file_name1 = "file.txt"
    print('Filename\tLine\tnumber of numbers\tstring separated by a comma\twhite space found\ttab found\tcarriage return found\n')         #This prints the master column in the python shell and this is the way the code should collect the data 
    baconFile.write('Filename\tLine\tnumber of numbers\tstring separated by a comma\twhite space found\ttab found\tcarriage return found\n') #This prints the master column in the output file and this is the way the code should collect the data

    #for filename in os.listdir(os.getcwd() + "/input_files"):
    for filename in os.listdir('C:\Users\M29858\Desktop\TestPy\Version10\input_files'):
        with open("input_files/" + filename, 'r') as f:
            if file_name1 in filename:

                output_contents(filename, f, baconFile)
    baconFile.close()       #closes the for loop that the code is writing to


    def output_contents(filename, f, baconFile):     #using open() function to open the file inside the directory
        index = 0
        for line in f:
                                        #create a list of all of the numerical values in our line
            content = line.split(',')       #this will be used to count the amount numbers before and after comma
            whitespace_found = False
            tab_found = False
            false_string = "False (end of file)"
            carriage_found = false_string 
            sigfigs = ""

            index += 1                            #adds 1 for every line if it finds what the command wants

        if " " in line:                         #checking for whitespace
            whitespace_found = True
        if "\t" in line:                        #checking for tabs return
            tab_found = True
        if '\n' in line:                    #checking if there is a newline after the end of each line
            carriage_found = True                                        
        sigfigs = (','.join(str(len(g)) for g in re.findall(r'\d+\.?(\d+)?', line )))    #counts the sigsfigs after decimal point 

        print(filename + "\t{0:<4}\t{1:<17}\t{2:<27}\t{3:17}\t{4:9}\t{5:21}"
              .format(index, len(content), sigfigs, str(whitespace_found), str(tab_found), str(carriage_found)))   #whatever is inside the .format() is the way it the data is stored into
        baconFile.write('\n')
        baconFile.write( filename + "\t{0:<4}\t{1:<17}\t{2:<27}\t{3:17}\t{4:9}\t{5:21}"
                        .format(index, len(content), sigfigs, str(whitespace_found), str(tab_found), str(carriage_found)))



if __name__ == '__main__':
    pain()


#THIS WORKS 
import glob
import os
from zipfile import ZipFile

def main():
    for fname in glob.glob("*.zip"):  # get all the zip files
        with ZipFile(fname) as archive:
            # if there's no file.txt, ignore and go on to the next zip file
            if 'file.txt' not in archive.namelist(): continue

            # make a new directory named after the zip file
            dirname = fname.rsplit('.',1)[0]
            os.mkdir(dirname)

            extract file.txt into the directory you just created
            archive.extract('file.txt', path=dirname)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM