mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
cancel parenthesis in ExtractZip
regex
This commit is contained in:
parent
55273e12f2
commit
9aa56e6ff2
@ -1525,7 +1525,7 @@ namespace Bloxstrap
|
||||
var regexList = new List<string>();
|
||||
|
||||
foreach (string file in files)
|
||||
regexList.Add("^" + file.Replace("\\", "\\\\") + "$");
|
||||
regexList.Add("^" + file.Replace("\\", "\\\\").Replace("(", "\\(").Replace(")", "\\)") + "$");
|
||||
|
||||
fileFilter = String.Join(';', regexList);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user