Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8899695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:55:12+00:00 2026-06-15T00:55:12+00:00

I am writing a program that outputs the file types inside a directory by

  • 0

I am writing a program that outputs the file types inside a directory by looking at their headers.

Some of the files are compressed so I need to be able to decompress them as a starting point

So far I have been able to search directories and using the header change the extensions, and open the compressed file and store its contents in a variable, now I am having trouble saving the variable as a new file.

def unzip():
    os.chdir("C:/Users/David/Myfiles")
    files = os.listdir(".")
    for x in (files):
        f = open((x), "rb")
        byte1 = f.read(1)
        byte2 = f.read(1)
        if byte1 == b'\x1f' and byte2 == b'\x8b':
            os.rename((x), (x) + ".gz")
            file = gzip.open((x), "rb")
            content = file.read()   
            print (content)

I’m guessing I will have to use the a command along the lines of f.write("newfile", content) but not sure.

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:55:14+00:00Added an answer on June 15, 2026 at 12:55 am

    In general, if you have a string in a variable foo, you can write it to a file with:

    with open('output.file','w') as f:
        f.write(foo)
    

    In your case, you wouldn’t use f as you’re already using f for your input file handle.

    I suppose you’d want something like:

    def unzip():
        os.chdir("C:/Users/Luke/Desktop/Cache")
        files = os.listdir(".")
        for x in (files):
            ifh = open((x), "rb")
            byte1 = ifh.read(1)
            byte2 = ifh.read(1)
            if byte1 == b'\x1f' and byte2 == b'\x8b':
                os.rename((x), (x) + ".gz")
                file = gzip.open((x), "rb")
                contents = file.read()   
                with open('output.file','w') as ofh:
                    ofh.write(contents)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a program that generates JSON and outputs it to the file.
I'm writing a program that's parsing an XML file to java objects using smooks.
I'm writing a program that reads huge file (3x280 GB) and does a fitting
I am writing a program that sets up a file path that I use
I am writing a program that needs to read in very large files (about
I am writing a small test program that gives the following xml file as
I'm writing a Java program that searches for and outputs cycles in a graph.
I am writing a program that reads input from one file, then the program
I am writing a C program that produces a large output file. To increase
I am currently writing a program that will eventually compare the files in two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.