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

  • SEARCH
  • Home
  • 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 8182381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T00:50:45+00:00 2026-06-07T00:50:45+00:00

Sometimes you come by Zip files with file or directory with some unrecognized characters

  • 0

Sometimes you come by Zip files with file or directory with some unrecognized characters in the names so you can’t extract them. What tools do you use to extract them in properly converted filenames?

  • 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-07T00:50:47+00:00Added an answer on June 7, 2026 at 12:50 am

    I searched the web but failed to find a good script. So out of necessity I wrote a Python script myself. Hope it comes handy for someone.

    Any suggestions are welcome, especially if you know this will not work in some special cases. Please don’t pick on the untidy coding style.

    import os,sys,zipfile
    
    x, fn = sys.argv
    enc = 'utf-8'
    
    zipf = zipfile.ZipFile(fn)
    for x in zipf.infolist():
        fn = x.filename
        fne = fn.encode(enc)
        if os.sep in fne:
            path = fne[:fne.rindex(os.sep)]
            if not os.path.exists(path): os.makedirs(path)
        if fne.endswith(os.sep): continue
        f = open(fne,'wb')
        f.write(zipf.open(fn).read())
        f.close()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How come sometimes you need to put the method signature in the .h file
I'm working with mails, and names and subjects sometimes come q-encoded, like this: =?UTF-8?Q?J=2E_Pablo_Fern=C3=A1ndez?=
Sometimes, I come across certain web development frameworks which don't provide an authentication feature,
Sometimes I feel the urge to put some more expressiveness in my git commit
Sometimes when using Visual Studio it displays a prompt with a filename: This file
An annoyance that I sometimes come across with SVN is the working copy getting
I know the usage of joins, but sometimes I come across such a situation
Sometimes I have come across this issue that whenever I change the order of
As a developer, I sometimes come across the term 'Critical Path' in the context
Possible Duplicate: Why catch and rethrow Exception in C#? I sometimes come across C#

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.