A Masm64 tool to find strings in files.
Framework : Masm64 SDK
This is a little tool with FindOnDisk general concept, wich is a very useful tool.
In this case, tool is limited to ANSI strings, and will fail with very long name files or non latin characters in directory names.
The file system exploration is a classical example from Masm32 SDK, obviously translated to 64 bits.
Boyer-Moore implementations are from mineiro's code. A little modification was critical, because that implementation crash when file size is an exact multiple of page size (like probably happen in many others similar tools that fail).
Original discussion can be found in Masm32 Forum
Any sugestion or improvement is welcome!