getnamo / 7zip-cpp

Fork of SevenZip++ for modern builds.
Other
221 stars 93 forks source link

Fix file-rename operations and allow format detection to fail #23

Closed error454 closed 6 years ago

error454 commented 6 years ago

Finally got the 7zpp-TestApp running and noticed that extraction test 4 was failing. My fault, I was stripping the path separation character as part of the invalid character check. Fixed that and green lights across the board.

I noticed that DetectCompressionFormat always returns true, even if the format is undetected at the end of the function, yet there are many places in the UE4 plugin that assume a false state. It now returns false if no format could be detected.

error454 commented 6 years ago

Something odd happened with local merge, let me clean this up.