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 3340428
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:36:24+00:00 2026-05-18T00:36:24+00:00

Is there anyway in Dot Net Zip that I can use to list all

  • 0

Is there anyway in Dot Net Zip that I can use to list all the names of files in a specific directory? For example, i can specify Directory1 and get File3 and File4 etc

ZipFile
-------

File1
File2
Directory1
     File3
     File4
Directory2
     File5
     File6

ZipFile object has only Entries, Entries Sorted, and Entries File Names…

Anyone?, Cheeso? 🙂

  • 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-05-18T00:36:24+00:00Added an answer on May 18, 2026 at 12:36 am

    No, and yes. There is no EntriesInDirectory collection. However, it’s a simple matter of string comparison to select entries that “belong” in a particular directory.

    In LINQ it looks like this:

    var selection = from e in zip.Entries 
        where e.FileName.StartsWith(directoryName)
        select e;
    

    In a for loop, it looks like this:

    var list = new List<ZipEntry>();
    foreach (var e in zip.Entries) {
      if (e.FileName.StartsWith(directoryName)) {
        list.Add(e);
      }
    }
    

    EDIT

    You may have to do conversions for case sensitivity. On Windows, case is not meaningful in file names.

    Further Explanation: the zip format doesn’t treat a directory entry in the zip file as a container. There is no container relationship between directory entries and file entries. The only way to tell if a file entry “belongs in” a particular directory is to examine the full name of the file entry. If the name of the entry starts with the name of the directory in question, then the entry is “in” the directory.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there anyway or any addin for VS2010 that can remove all the comments
Is there anyway that I can find the source code of the function VLOOKUP
Is there anyway to serialize a List of datacontracts? I have created a datacontract
Is there anyway I can detect via jQuery if a select form element is
I've created a dot graph with CSS that uses JavaScript to do all the
In boost::numeric::ublas , there are three sparse vector types . I can see that
I have some word templates(dot/dotx) files that contain xml tags along with plain text.
Is there anyway to set a breakpoint in eclipse or another debugger such that
Having a Dll made by dot net , is there any way to distinguish
I am using an example program from this code http://sicktoolbox.sourceforge.net/ > http://sourceforge.net/projects/sicktoolbox/files/ . It's

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.