File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 1
1
using Ionic . Zip ;
2
2
using System ;
3
3
using System . Collections . Generic ;
4
- using System . Security ;
5
4
using CommandLine ;
6
5
using CommandLine . Text ;
7
- using System . Threading ;
8
6
using System . IO ;
9
- using System . Text ;
10
7
using System . Linq ;
11
8
12
9
namespace MiddleOut
@@ -19,7 +16,6 @@ class Program
19
16
20
17
public enum PathType { NonExisting = 0 , File = 1 , Directory = 2 } ;
21
18
22
-
23
19
public class Options
24
20
{
25
21
public static Options Instance { get ; set ; }
@@ -55,9 +51,6 @@ static void DisplayHelp<T>(ParserResult<T> result, IEnumerable<Error> errs)
55
51
System . Environment . Exit ( 1 ) ;
56
52
}
57
53
58
-
59
-
60
-
61
54
public static PathType GetPathType ( string path )
62
55
{
63
56
if ( File . Exists ( path ) )
@@ -67,11 +60,6 @@ public static PathType GetPathType(string path)
67
60
return PathType . NonExisting ;
68
61
}
69
62
70
-
71
-
72
-
73
-
74
-
75
63
public static void Zipper ( string [ ] zipList , string password , string location )
76
64
{
77
65
using ( ZipFile zip = new ZipFile ( ) )
You can’t perform that action at this time.
0 commit comments