-
Notifications
You must be signed in to change notification settings - Fork 976
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FastZip.CreateZip() , filter "*.o" will show all files ,filter ".so" will show "*.*so*",it's bad #375
Comments
I think those filters are supposed to be regular expressions, so those cases might be "anything that includes 'o'" and "anything that includes 'so'"? (/regex knowledge is extremely basic) |
Indeed! https://regex101.com/r/0dG0vG/1 To only include files that end with |
Closing this as it seems to have been answered. |
…ocatorSignature, take account of the blocks fixed size.
… blocks fixed size. refs icsharpcode#403/icsharpcode#375
Expected behavior
1.the directory has files,ex:xxx.o,xxx.so,xx.soc,xx.oso
2.aFileFiter = ".so"
3.new FastZip().CreateZip(aZipedFileName, aFilePath, true, aFileFiter, aDirectoryFiter);
4.result will show xx.so ,xx.soc ,xx.oso
The text was updated successfully, but these errors were encountered: