I use SevenZipSharp
to compress my files and directories.
I use the following code and it works well:
var searchPattern = "*.txt";
compressor.CompressDirectory(directory, archiveName, password, searchPattern, recursion);
Now, i want filter the directory files by a more complicated SearchPattern like this:
var searchPattern = "*.txt && *.xml";
compressor.CompressDirectory(directory, archiveName, password, searchPattern, recursion);
In this case i get:
Index was outside the bounds of the array
Is there a way to do this by SearchPattern
?
If NO, How can i do this?
The answer is no, you can't do this with
SearchPattern
.As you can see in the source code here:
Internally, SevenZipSharp calls Directory.GetFiles, which doesn't support multiple masks.
So you have several alternatives: