Answers for "zip file ignoring directory starting with dot"

C#
0

zip file ignoring directory starting with dot

if you are using 
zip -r 1.zip *
this will ignore the hidden directories(dot directory)

To include the dot directory use the below format. 
it includes everything in that directory
zip -r 1.zip .
Posted by: Guest on May-27-2020

Code answers related to "zip file ignoring directory starting with dot"

C# Answers by Framework

Browse Popular Code Answers by Language