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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:11:05+00:00 2026-06-13T02:11:05+00:00

I have a .lst file that has the paths of various data that has

  • 0

I have a .lst file that has the paths of various data that has to be zipped. The path may be a direct path to an executable or a path to a log file or may contain a wildcard like – c:\abc*.exe. How do I zip all of them into a single zip file? Thanks

DotNetZip Library is @:http://dotnetzip.codeplex.com/wikipage?title=CS-examples&referringTitle=Examples

Contents of .lst file :

c:\log\abc.log

c:\log\def.log

c:\ping*.bat

c:\ping*.exe

This is what I tried:

using (ZipFile zip = new ZipFile())     
{                      
   StreamReader file = File.OpenText("C:\\pingman\\pingzipA.lst");
   string read = String.Empty;

   while ((read = file.ReadLine()) != null)                  
   {                                      
      zip.AddSelectedFiles(read, true);    
      zip.Save("c:\\update.zip");       
   }

   file.Close();   
}
  • 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-13T02:11:06+00:00Added an answer on June 13, 2026 at 2:11 am

    Try something like:

     while ((read = file.ReadLine()) != null)                  
     {              
       if (read.Contains("*"))                        
       {
           zip.AddSelectedFiles(read, true);    
       }
       else
       {
           zip.AddFile(read);
       }
     }
     zip.Save("c:\\update.zip");       
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Our control system has a lot of data files that have specific versions. The
I have a file that I read in into R and is translated to
I have a list that looks like this: lst = [1,2,6,3,9] I want to
I have a makefile that compiles every .c file in my project. For each
We have something like List lst = new LinkedList(); which shows that List is
Im have a xml config file called solrconfig.xml, it has this section in the
I have a list of files in file.lst . Now I want to find
I have a list of String List<String> lst=new List<String>{A,B,C} And an xml file like
I have a large(20MB) text (input) file with various lines of text (including blank
I have a file (ratings.lst) downloaded from IMDB Interfaces. The content appears to be

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.