forked from svn2github/dotnetzip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZipFile.Selector.cs
More file actions
1464 lines (1394 loc) · 61.7 KB
/
Copy pathZipFile.Selector.cs
File metadata and controls
1464 lines (1394 loc) · 61.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ZipFile.Selector.cs
// ------------------------------------------------------------------
//
// Copyright (c) 2009-2010 Dino Chiesa.
// All rights reserved.
//
// This code module is part of DotNetZip, a zipfile class library.
//
// ------------------------------------------------------------------
//
// This code is licensed under the Microsoft Public License.
// See the file License.txt for the license details.
// More info on: http://dotnetzip.codeplex.com
//
// ------------------------------------------------------------------
//
// last saved (in emacs):
// Time-stamp: <2011-August-06 09:35:58>
//
// ------------------------------------------------------------------
//
// This module defines methods in the ZipFile class associated to the FileFilter
// capability - selecting files to add into the archive, or selecting entries to
// retrieve from the archive based on criteria including the filename, size, date, or
// attributes. It is something like a "poor man's LINQ". I included it into DotNetZip
// because not everyone has .NET 3.5 yet. When using DotNetZip on .NET 3.5, the LINQ
// query/selection will be superior.
//
// These methods are segregated into a different module to facilitate easy exclusion for
// those people who wish to have a smaller library without this function.
//
// ------------------------------------------------------------------
using System;
using System.IO;
using System.Collections.Generic;
namespace Ionic.Zip
{
partial class ZipFile
{
/// <summary>
/// Adds to the ZipFile a set of files from the current working directory on
/// disk, that conform to the specified criteria.
/// </summary>
///
/// <remarks>
/// <para>
/// This method selects files from the the current working directory matching
/// the specified criteria, and adds them to the ZipFile.
/// </para>
///
/// <para>
/// Specify the criteria in statements of 3 elements: a noun, an operator, and
/// a value. Consider the string "name != *.doc" . The noun is "name". The
/// operator is "!=", implying "Not Equal". The value is "*.doc". That
/// criterion, in English, says "all files with a name that does not end in
/// the .doc extension."
/// </para>
///
/// <para>
/// Supported nouns include "name" (or "filename") for the filename; "atime",
/// "mtime", and "ctime" for last access time, last modfied time, and created
/// time of the file, respectively; "attributes" (or "attrs") for the file
/// attributes; "size" (or "length") for the file length (uncompressed), and
/// "type" for the type of object, either a file or a directory. The
/// "attributes", "name" and "type" nouns both support = and != as operators.
/// The "size", "atime", "mtime", and "ctime" nouns support = and !=, and
/// >, >=, <, <= as well. The times are taken to be expressed in
/// local time.
/// </para>
///
/// <para>
/// Specify values for the file attributes as a string with one or more of the
/// characters H,R,S,A,I,L in any order, implying file attributes of Hidden,
/// ReadOnly, System, Archive, NotContextIndexed, and ReparsePoint (symbolic
/// link) respectively.
/// </para>
///
/// <para>
/// To specify a time, use YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the
/// format. If you omit the HH:mm:ss portion, it is assumed to be 00:00:00
/// (midnight).
/// </para>
///
/// <para>
/// The value for a size criterion is expressed in integer quantities of bytes,
/// kilobytes (use k or kb after the number), megabytes (m or mb), or gigabytes
/// (g or gb).
/// </para>
///
/// <para>
/// The value for a name is a pattern to match against the filename, potentially
/// including wildcards. The pattern follows CMD.exe glob rules: * implies one
/// or more of any character, while ? implies one character. If the name
/// pattern contains any slashes, it is matched to the entire filename,
/// including the path; otherwise, it is matched against only the filename
/// without the path. This means a pattern of "*\*.*" matches all files one
/// directory level deep, while a pattern of "*.*" matches all files in all
/// directories.
/// </para>
///
/// <para>
/// To specify a name pattern that includes spaces, use single quotes around the
/// pattern. A pattern of "'* *.*'" will match all files that have spaces in
/// the filename. The full criteria string for that would be "name = '* *.*'" .
/// </para>
///
/// <para>
/// The value for a type criterion is either F (implying a file) or D (implying
/// a directory).
/// </para>
///
/// <para>
/// Some examples:
/// </para>
///
/// <list type="table">
/// <listheader>
/// <term>criteria</term>
/// <description>Files retrieved</description>
/// </listheader>
///
/// <item>
/// <term>name != *.xls </term>
/// <description>any file with an extension that is not .xls
/// </description>
/// </item>
///
/// <item>
/// <term>name = *.mp3 </term>
/// <description>any file with a .mp3 extension.
/// </description>
/// </item>
///
/// <item>
/// <term>*.mp3</term>
/// <description>(same as above) any file with a .mp3 extension.
/// </description>
/// </item>
///
/// <item>
/// <term>attributes = A </term>
/// <description>all files whose attributes include the Archive bit.
/// </description>
/// </item>
///
/// <item>
/// <term>attributes != H </term>
/// <description>all files whose attributes do not include the Hidden bit.
/// </description>
/// </item>
///
/// <item>
/// <term>mtime > 2009-01-01</term>
/// <description>all files with a last modified time after January 1st, 2009.
/// </description>
/// </item>
///
/// <item>
/// <term>size > 2gb</term>
/// <description>all files whose uncompressed size is greater than 2gb.
/// </description>
/// </item>
///
/// <item>
/// <term>type = D</term>
/// <description>all directories in the filesystem. </description>
/// </item>
///
/// </list>
///
/// <para>
/// You can combine criteria with the conjunctions AND or OR. Using a string
/// like "name = *.txt AND size >= 100k" for the selectionCriteria retrieves
/// entries whose names end in .txt, and whose uncompressed size is greater than
/// or equal to 100 kilobytes.
/// </para>
///
/// <para>
/// For more complex combinations of criteria, you can use parenthesis to group
/// clauses in the boolean logic. Without parenthesis, the precedence of the
/// criterion atoms is determined by order of appearance. Unlike the C#
/// language, the AND conjunction does not take precendence over the logical OR.
/// This is important only in strings that contain 3 or more criterion atoms.
/// In other words, "name = *.txt and size > 1000 or attributes = H" implies
/// "((name = *.txt AND size > 1000) OR attributes = H)" while "attributes =
/// H OR name = *.txt and size > 1000" evaluates to "((attributes = H OR name
/// = *.txt) AND size > 1000)". When in doubt, use parenthesis.
/// </para>
///
/// <para>
/// Using time properties requires some extra care. If you want to retrieve all
/// entries that were last updated on 2009 February 14, specify a time range
/// like so:"mtime >= 2009-02-14 AND mtime < 2009-02-15". Read this to
/// say: all files updated after 12:00am on February 14th, until 12:00am on
/// February 15th. You can use the same bracketing approach to specify any time
/// period - a year, a month, a week, and so on.
/// </para>
///
/// <para>
/// The syntax allows one special case: if you provide a string with no spaces, it is
/// treated as a pattern to match for the filename. Therefore a string like "*.xls"
/// will be equivalent to specifying "name = *.xls".
/// </para>
///
/// <para>
/// There is no logic in this method that insures that the file inclusion
/// criteria are internally consistent. For example, it's possible to specify
/// criteria that says the file must have a size of less than 100 bytes, as well
/// as a size that is greater than 1000 bytes. Obviously no file will ever
/// satisfy such criteria, but this method does not detect such logical
/// inconsistencies. The caller is responsible for insuring the criteria are
/// sensible.
/// </para>
///
/// <para>
/// Using this method, the file selection does not recurse into
/// subdirectories, and the full path of the selected files is included in the
/// entries added into the zip archive. If you don't like these behaviors,
/// see the other overloads of this method.
/// </para>
/// </remarks>
///
/// <example>
/// This example zips up all *.csv files in the current working directory.
/// <code>
/// using (ZipFile zip = new ZipFile())
/// {
/// // To just match on filename wildcards,
/// // use the shorthand form of the selectionCriteria string.
/// zip.AddSelectedFiles("*.csv");
/// zip.Save(PathToZipArchive);
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = New ZipFile()
/// zip.AddSelectedFiles("*.csv")
/// zip.Save(PathToZipArchive)
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">The criteria for file selection</param>
public void AddSelectedFiles(String selectionCriteria)
{
this.AddSelectedFiles(selectionCriteria, ".", null, false);
}
/// <summary>
/// Adds to the ZipFile a set of files from the disk that conform to the
/// specified criteria, optionally recursing into subdirectories.
/// </summary>
///
/// <remarks>
/// <para>
/// This method selects files from the the current working directory matching
/// the specified criteria, and adds them to the ZipFile. If
/// <c>recurseDirectories</c> is true, files are also selected from
/// subdirectories, and the directory structure in the filesystem is
/// reproduced in the zip archive, rooted at the current working directory.
/// </para>
///
/// <para>
/// Using this method, the full path of the selected files is included in the
/// entries added into the zip archive. If you don't want this behavior, use
/// one of the overloads of this method that allows the specification of a
/// <c>directoryInArchive</c>.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
///
/// </remarks>
///
/// <example>
///
/// This example zips up all *.xml files in the current working directory, or any
/// subdirectory, that are larger than 1mb.
///
/// <code>
/// using (ZipFile zip = new ZipFile())
/// {
/// // Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.xml and size > 1024kb", true);
/// zip.Save(PathToZipArchive);
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = New ZipFile()
/// ' Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.xml and size > 1024kb", true)
/// zip.Save(PathToZipArchive)
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">The criteria for file selection</param>
///
/// <param name="recurseDirectories">
/// If true, the file selection will recurse into subdirectories.
/// </param>
public void AddSelectedFiles(String selectionCriteria, bool recurseDirectories)
{
this.AddSelectedFiles(selectionCriteria, ".", null, recurseDirectories);
}
/// <summary>
/// Adds to the ZipFile a set of files from a specified directory in the
/// filesystem, that conform to the specified criteria.
/// </summary>
///
/// <remarks>
/// <para>
/// This method selects files that conform to the specified criteria, from the
/// the specified directory on disk, and adds them to the ZipFile. The search
/// does not recurse into subdirectores.
/// </para>
///
/// <para>
/// Using this method, the full filesystem path of the files on disk is
/// reproduced on the entries added to the zip file. If you don't want this
/// behavior, use one of the other overloads of this method.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
///
/// </remarks>
///
/// <example>
///
/// This example zips up all *.xml files larger than 1mb in the directory
/// given by "d:\rawdata".
///
/// <code>
/// using (ZipFile zip = new ZipFile())
/// {
/// // Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.xml and size > 1024kb", "d:\\rawdata");
/// zip.Save(PathToZipArchive);
/// }
/// </code>
///
/// <code lang="VB">
/// Using zip As ZipFile = New ZipFile()
/// ' Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.xml and size > 1024kb", "d:\rawdata)
/// zip.Save(PathToZipArchive)
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">The criteria for file selection</param>
///
/// <param name="directoryOnDisk">
/// The name of the directory on the disk from which to select files.
/// </param>
public void AddSelectedFiles(String selectionCriteria, String directoryOnDisk)
{
this.AddSelectedFiles(selectionCriteria, directoryOnDisk, null, false);
}
/// <summary>
/// Adds to the ZipFile a set of files from the specified directory on disk,
/// that conform to the specified criteria.
/// </summary>
///
/// <remarks>
///
/// <para>
/// This method selects files from the the specified disk directory matching
/// the specified selection criteria, and adds them to the ZipFile. If
/// <c>recurseDirectories</c> is true, files are also selected from
/// subdirectories.
/// </para>
///
/// <para>
/// The full directory structure in the filesystem is reproduced on the
/// entries added to the zip archive. If you don't want this behavior, use
/// one of the overloads of this method that allows the specification of a
/// <c>directoryInArchive</c>.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
/// </remarks>
///
/// <example>
///
/// This example zips up all *.csv files in the "files" directory, or any
/// subdirectory, that have been saved since 2009 February 14th.
///
/// <code>
/// using (ZipFile zip = new ZipFile())
/// {
/// // Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.csv and mtime > 2009-02-14", "files", true);
/// zip.Save(PathToZipArchive);
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = New ZipFile()
/// ' Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.csv and mtime > 2009-02-14", "files", true)
/// zip.Save(PathToZipArchive)
/// End Using
/// </code>
/// </example>
///
/// <example>
/// This example zips up all files in the current working
/// directory, and all its child directories, except those in
/// the <c>excludethis</c> subdirectory.
/// <code lang="VB">
/// Using Zip As ZipFile = New ZipFile(zipfile)
/// Zip.AddSelectedFfiles("name != 'excludethis\*.*'", datapath, True)
/// Zip.Save()
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">The criteria for file selection</param>
///
/// <param name="directoryOnDisk">
/// The filesystem path from which to select files.
/// </param>
///
/// <param name="recurseDirectories">
/// If true, the file selection will recurse into subdirectories.
/// </param>
public void AddSelectedFiles(String selectionCriteria, String directoryOnDisk, bool recurseDirectories)
{
this.AddSelectedFiles(selectionCriteria, directoryOnDisk, null, recurseDirectories);
}
/// <summary>
/// Adds to the ZipFile a selection of files from the specified directory on
/// disk, that conform to the specified criteria, and using a specified root
/// path for entries added to the zip archive.
/// </summary>
///
/// <remarks>
/// <para>
/// This method selects files from the specified disk directory matching the
/// specified selection criteria, and adds those files to the ZipFile, using
/// the specified directory path in the archive. The search does not recurse
/// into subdirectories. For details on the syntax for the selectionCriteria
/// parameter, see <see cref="AddSelectedFiles(String)" />.
/// </para>
///
/// </remarks>
///
/// <example>
///
/// This example zips up all *.psd files in the "photos" directory that have
/// been saved since 2009 February 14th, and puts them all in a zip file,
/// using the directory name of "content" in the zip archive itself. When the
/// zip archive is unzipped, the folder containing the .psd files will be
/// named "content".
///
/// <code>
/// using (ZipFile zip = new ZipFile())
/// {
/// // Use a compound expression in the selectionCriteria string.
/// zip.AddSelectedFiles("name = *.psd and mtime > 2009-02-14", "photos", "content");
/// zip.Save(PathToZipArchive);
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = New ZipFile
/// zip.AddSelectedFiles("name = *.psd and mtime > 2009-02-14", "photos", "content")
/// zip.Save(PathToZipArchive)
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">
/// The criteria for selection of files to add to the <c>ZipFile</c>.
/// </param>
///
/// <param name="directoryOnDisk">
/// The path to the directory in the filesystem from which to select files.
/// </param>
///
/// <param name="directoryPathInArchive">
/// Specifies a directory path to use to in place of the
/// <c>directoryOnDisk</c>. This path may, or may not, correspond to a real
/// directory in the current filesystem. If the files within the zip are
/// later extracted, this is the path used for the extracted file. Passing
/// null (nothing in VB) will use the path on the file name, if any; in other
/// words it would use <c>directoryOnDisk</c>, plus any subdirectory. Passing
/// the empty string ("") will insert the item at the root path within the
/// archive.
/// </param>
public void AddSelectedFiles(String selectionCriteria,
String directoryOnDisk,
String directoryPathInArchive)
{
this.AddSelectedFiles(selectionCriteria, directoryOnDisk, directoryPathInArchive, false);
}
/// <summary>
/// Adds to the ZipFile a selection of files from the specified directory on
/// disk, that conform to the specified criteria, optionally recursing through
/// subdirectories, and using a specified root path for entries added to the
/// zip archive.
/// </summary>
///
/// <remarks>
/// This method selects files from the specified disk directory that match the
/// specified selection criteria, and adds those files to the ZipFile, using
/// the specified directory path in the archive. If <c>recurseDirectories</c>
/// is true, files are also selected from subdirectories, and the directory
/// structure in the filesystem is reproduced in the zip archive, rooted at
/// the directory specified by <c>directoryOnDisk</c>. For details on the
/// syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)" />.
/// </remarks>
///
/// <example>
///
/// This example zips up all files that are NOT *.pst files, in the current
/// working directory and any subdirectories.
///
/// <code>
/// using (ZipFile zip = new ZipFile())
/// {
/// zip.AddSelectedFiles("name != *.pst", SourceDirectory, "backup", true);
/// zip.Save(PathToZipArchive);
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = New ZipFile
/// zip.AddSelectedFiles("name != *.pst", SourceDirectory, "backup", true)
/// zip.Save(PathToZipArchive)
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">
/// The criteria for selection of files to add to the <c>ZipFile</c>.
/// </param>
///
/// <param name="directoryOnDisk">
/// The path to the directory in the filesystem from which to select files.
/// </param>
///
/// <param name="directoryPathInArchive">
/// Specifies a directory path to use to in place of the
/// <c>directoryOnDisk</c>. This path may, or may not, correspond to a real
/// directory in the current filesystem. If the files within the zip are
/// later extracted, this is the path used for the extracted file. Passing
/// null (nothing in VB) will use the path on the file name, if any; in other
/// words it would use <c>directoryOnDisk</c>, plus any subdirectory. Passing
/// the empty string ("") will insert the item at the root path within the
/// archive.
/// </param>
///
/// <param name="recurseDirectories">
/// If true, the method also scans subdirectories for files matching the
/// criteria.
/// </param>
public void AddSelectedFiles(String selectionCriteria,
String directoryOnDisk,
String directoryPathInArchive,
bool recurseDirectories)
{
_AddOrUpdateSelectedFiles(selectionCriteria,
directoryOnDisk,
directoryPathInArchive,
recurseDirectories,
false);
}
/// <summary>
/// Updates the ZipFile with a selection of files from the disk that conform
/// to the specified criteria.
/// </summary>
///
/// <remarks>
/// This method selects files from the specified disk directory that match the
/// specified selection criteria, and Updates the <c>ZipFile</c> with those
/// files, using the specified directory path in the archive. If
/// <c>recurseDirectories</c> is true, files are also selected from
/// subdirectories, and the directory structure in the filesystem is
/// reproduced in the zip archive, rooted at the directory specified by
/// <c>directoryOnDisk</c>. For details on the syntax for the
/// selectionCriteria parameter, see <see cref="AddSelectedFiles(String)" />.
/// </remarks>
///
/// <param name="selectionCriteria">
/// The criteria for selection of files to add to the <c>ZipFile</c>.
/// </param>
///
/// <param name="directoryOnDisk">
/// The path to the directory in the filesystem from which to select files.
/// </param>
///
/// <param name="directoryPathInArchive">
/// Specifies a directory path to use to in place of the
/// <c>directoryOnDisk</c>. This path may, or may not, correspond to a
/// real directory in the current filesystem. If the files within the zip
/// are later extracted, this is the path used for the extracted file.
/// Passing null (nothing in VB) will use the path on the file name, if
/// any; in other words it would use <c>directoryOnDisk</c>, plus any
/// subdirectory. Passing the empty string ("") will insert the item at
/// the root path within the archive.
/// </param>
///
/// <param name="recurseDirectories">
/// If true, the method also scans subdirectories for files matching the criteria.
/// </param>
///
/// <seealso cref="AddSelectedFiles(String, String, String, bool)" />
public void UpdateSelectedFiles(String selectionCriteria,
String directoryOnDisk,
String directoryPathInArchive,
bool recurseDirectories)
{
_AddOrUpdateSelectedFiles(selectionCriteria,
directoryOnDisk,
directoryPathInArchive,
recurseDirectories,
true);
}
private string EnsureendInSlash(string s)
{
if (s.EndsWith("\\")) return s;
return s + "\\";
}
private void _AddOrUpdateSelectedFiles(String selectionCriteria,
String directoryOnDisk,
String directoryPathInArchive,
bool recurseDirectories,
bool wantUpdate)
{
if (directoryOnDisk == null && (Directory.Exists(selectionCriteria)))
{
directoryOnDisk = selectionCriteria;
selectionCriteria = "*.*";
}
else if (String.IsNullOrEmpty(directoryOnDisk))
{
directoryOnDisk = ".";
}
// workitem 9176
while (directoryOnDisk.EndsWith("\\")) directoryOnDisk = directoryOnDisk.Substring(0, directoryOnDisk.Length - 1);
if (Verbose) StatusMessageTextWriter.WriteLine("adding selection '{0}' from dir '{1}'...",
selectionCriteria, directoryOnDisk);
Ionic.FileSelector ff = new Ionic.FileSelector(selectionCriteria,
AddDirectoryWillTraverseReparsePoints);
var itemsToAdd = ff.SelectFiles(directoryOnDisk, recurseDirectories);
if (Verbose) StatusMessageTextWriter.WriteLine("found {0} files...", itemsToAdd.Count);
OnAddStarted();
AddOrUpdateAction action = (wantUpdate) ? AddOrUpdateAction.AddOrUpdate : AddOrUpdateAction.AddOnly;
foreach (var item in itemsToAdd)
{
// workitem 10153
string dirInArchive = (directoryPathInArchive == null)
? null
// workitem 12260
: ReplaceLeadingDirectory(Path.GetDirectoryName(item),
directoryOnDisk,
directoryPathInArchive);
if (File.Exists(item))
{
if (wantUpdate)
this.UpdateFile(item, dirInArchive);
else
this.AddFile(item, dirInArchive);
}
else
{
// this adds "just" the directory, without recursing to the contained files
AddOrUpdateDirectoryImpl(item, dirInArchive, action, false, 0);
}
}
OnAddCompleted();
}
// workitem 12260
private static string ReplaceLeadingDirectory(string original,
string pattern,
string replacement)
{
string upperString = original.ToUpper();
string upperPattern = pattern.ToUpper();
int p1 = upperString.IndexOf(upperPattern);
if (p1 != 0) return original;
return replacement + original.Substring(upperPattern.Length);
}
#if NOT
private static string ReplaceEx(string original,
string pattern,
string replacement)
{
int count, position0, position1;
count = position0 = position1 = 0;
string upperString = original.ToUpper();
string upperPattern = pattern.ToUpper();
int inc = (original.Length/pattern.Length) *
(replacement.Length-pattern.Length);
char [] chars = new char[original.Length + Math.Max(0, inc)];
while( (position1 = upperString.IndexOf(upperPattern,
position0)) != -1 )
{
for ( int i=position0 ; i < position1 ; ++i )
chars[count++] = original[i];
for ( int i=0 ; i < replacement.Length ; ++i )
chars[count++] = replacement[i];
position0 = position1+pattern.Length;
}
if ( position0 == 0 ) return original;
for ( int i=position0 ; i < original.Length ; ++i )
chars[count++] = original[i];
return new string(chars, 0, count);
}
#endif
/// <summary>
/// Retrieve entries from the zipfile by specified criteria.
/// </summary>
///
/// <remarks>
/// <para>
/// This method allows callers to retrieve the collection of entries from the zipfile
/// that fit the specified criteria. The criteria are described in a string format, and
/// can include patterns for the filename; constraints on the size of the entry;
/// constraints on the last modified, created, or last accessed time for the file
/// described by the entry; or the attributes of the entry.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
///
/// <para>
/// This method is intended for use with a ZipFile that has been read from storage.
/// When creating a new ZipFile, this method will work only after the ZipArchive has
/// been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip
/// archive from storage.) Calling SelectEntries on a ZipFile that has not yet been
/// saved will deliver undefined results.
/// </para>
/// </remarks>
///
/// <exception cref="System.Exception">
/// Thrown if selectionCriteria has an invalid syntax.
/// </exception>
///
/// <example>
/// This example selects all the PhotoShop files from within an archive, and extracts them
/// to the current working directory.
/// <code>
/// using (ZipFile zip1 = ZipFile.Read(ZipFileName))
/// {
/// var PhotoShopFiles = zip1.SelectEntries("*.psd");
/// foreach (ZipEntry psd in PhotoShopFiles)
/// {
/// psd.Extract();
/// }
/// }
/// </code>
/// <code lang="VB">
/// Using zip1 As ZipFile = ZipFile.Read(ZipFileName)
/// Dim PhotoShopFiles as ICollection(Of ZipEntry)
/// PhotoShopFiles = zip1.SelectEntries("*.psd")
/// Dim psd As ZipEntry
/// For Each psd In PhotoShopFiles
/// psd.Extract
/// Next
/// End Using
/// </code>
/// </example>
/// <param name="selectionCriteria">the string that specifies which entries to select</param>
/// <returns>a collection of ZipEntry objects that conform to the inclusion spec</returns>
public ICollection<ZipEntry> SelectEntries(String selectionCriteria)
{
Ionic.FileSelector ff = new Ionic.FileSelector(selectionCriteria,
AddDirectoryWillTraverseReparsePoints);
return ff.SelectEntries(this);
}
/// <summary>
/// Retrieve entries from the zipfile by specified criteria.
/// </summary>
///
/// <remarks>
/// <para>
/// This method allows callers to retrieve the collection of entries from the zipfile
/// that fit the specified criteria. The criteria are described in a string format, and
/// can include patterns for the filename; constraints on the size of the entry;
/// constraints on the last modified, created, or last accessed time for the file
/// described by the entry; or the attributes of the entry.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
///
/// <para>
/// This method is intended for use with a ZipFile that has been read from storage.
/// When creating a new ZipFile, this method will work only after the ZipArchive has
/// been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip
/// archive from storage.) Calling SelectEntries on a ZipFile that has not yet been
/// saved will deliver undefined results.
/// </para>
/// </remarks>
///
/// <exception cref="System.Exception">
/// Thrown if selectionCriteria has an invalid syntax.
/// </exception>
///
/// <example>
/// <code>
/// using (ZipFile zip1 = ZipFile.Read(ZipFileName))
/// {
/// var UpdatedPhotoShopFiles = zip1.SelectEntries("*.psd", "UpdatedFiles");
/// foreach (ZipEntry e in UpdatedPhotoShopFiles)
/// {
/// // prompt for extract here
/// if (WantExtract(e.FileName))
/// e.Extract();
/// }
/// }
/// </code>
/// <code lang="VB">
/// Using zip1 As ZipFile = ZipFile.Read(ZipFileName)
/// Dim UpdatedPhotoShopFiles As ICollection(Of ZipEntry) = zip1.SelectEntries("*.psd", "UpdatedFiles")
/// Dim e As ZipEntry
/// For Each e In UpdatedPhotoShopFiles
/// ' prompt for extract here
/// If Me.WantExtract(e.FileName) Then
/// e.Extract
/// End If
/// Next
/// End Using
/// </code>
/// </example>
/// <param name="selectionCriteria">the string that specifies which entries to select</param>
///
/// <param name="directoryPathInArchive">
/// the directory in the archive from which to select entries. If null, then
/// all directories in the archive are used.
/// </param>
///
/// <returns>a collection of ZipEntry objects that conform to the inclusion spec</returns>
public ICollection<ZipEntry> SelectEntries(String selectionCriteria, string directoryPathInArchive)
{
Ionic.FileSelector ff = new Ionic.FileSelector(selectionCriteria,
AddDirectoryWillTraverseReparsePoints);
return ff.SelectEntries(this, directoryPathInArchive);
}
/// <summary>
/// Remove entries from the zipfile by specified criteria.
/// </summary>
///
/// <remarks>
/// <para>
/// This method allows callers to remove the collection of entries from the zipfile
/// that fit the specified criteria. The criteria are described in a string format, and
/// can include patterns for the filename; constraints on the size of the entry;
/// constraints on the last modified, created, or last accessed time for the file
/// described by the entry; or the attributes of the entry.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
///
/// <para>
/// This method is intended for use with a ZipFile that has been read from storage.
/// When creating a new ZipFile, this method will work only after the ZipArchive has
/// been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip
/// archive from storage.) Calling SelectEntries on a ZipFile that has not yet been
/// saved will deliver undefined results.
/// </para>
/// </remarks>
///
/// <exception cref="System.Exception">
/// Thrown if selectionCriteria has an invalid syntax.
/// </exception>
///
/// <example>
/// This example removes all entries in a zip file that were modified prior to January 1st, 2008.
/// <code>
/// using (ZipFile zip1 = ZipFile.Read(ZipFileName))
/// {
/// // remove all entries from prior to Jan 1, 2008
/// zip1.RemoveEntries("mtime < 2008-01-01");
/// // don't forget to save the archive!
/// zip1.Save();
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = ZipFile.Read(ZipFileName)
/// ' remove all entries from prior to Jan 1, 2008
/// zip1.RemoveEntries("mtime < 2008-01-01")
/// ' do not forget to save the archive!
/// zip1.Save
/// End Using
/// </code>
/// </example>
/// <param name="selectionCriteria">the string that specifies which entries to select</param>
/// <returns>the number of entries removed</returns>
public int RemoveSelectedEntries(String selectionCriteria)
{
var selection = this.SelectEntries(selectionCriteria);
this.RemoveEntries(selection);
return selection.Count;
}
/// <summary>
/// Remove entries from the zipfile by specified criteria, and within the specified
/// path in the archive.
/// </summary>
///
/// <remarks>
/// <para>
/// This method allows callers to remove the collection of entries from the zipfile
/// that fit the specified criteria. The criteria are described in a string format, and
/// can include patterns for the filename; constraints on the size of the entry;
/// constraints on the last modified, created, or last accessed time for the file
/// described by the entry; or the attributes of the entry.
/// </para>
///
/// <para>
/// For details on the syntax for the selectionCriteria parameter, see <see
/// cref="AddSelectedFiles(String)"/>.
/// </para>
///
/// <para>
/// This method is intended for use with a ZipFile that has been read from storage.
/// When creating a new ZipFile, this method will work only after the ZipArchive has
/// been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip
/// archive from storage.) Calling SelectEntries on a ZipFile that has not yet been
/// saved will deliver undefined results.
/// </para>
/// </remarks>
///
/// <exception cref="System.Exception">
/// Thrown if selectionCriteria has an invalid syntax.
/// </exception>
///
/// <example>
/// <code>
/// using (ZipFile zip1 = ZipFile.Read(ZipFileName))
/// {
/// // remove all entries from prior to Jan 1, 2008
/// zip1.RemoveEntries("mtime < 2008-01-01", "documents");
/// // a call to ZipFile.Save will make the modifications permanent
/// zip1.Save();
/// }
/// </code>
/// <code lang="VB">
/// Using zip As ZipFile = ZipFile.Read(ZipFileName)
/// ' remove all entries from prior to Jan 1, 2008
/// zip1.RemoveEntries("mtime < 2008-01-01", "documents")
/// ' a call to ZipFile.Save will make the modifications permanent
/// zip1.Save
/// End Using
/// </code>
/// </example>
///
/// <param name="selectionCriteria">the string that specifies which entries to select</param>
/// <param name="directoryPathInArchive">
/// the directory in the archive from which to select entries. If null, then
/// all directories in the archive are used.
/// </param>
/// <returns>the number of entries removed</returns>
public int RemoveSelectedEntries(String selectionCriteria, string directoryPathInArchive)