How WeChat Source Files Are Organized
Larger projects need reasonable file directory hierarchy organization.
During reverse engineering WeChat, often see some “output log” method calls, and with complete paths. For example:
/Users/ioscmechine/Desktop/hudson/workspace/release_appstore_6.3.29/WeApp/Core/LocalCache/WAPackageSweeperLogic.mm
Looks like used FILE macro.
Use strings to store all WeChat (after decrypting) strings to a file,
$ strings WeChat > strings_wechat.txt
As shown:

Write a small script to extract all strings starting with /Users/, then split, assemble into a tree.
Can see part of WeChat’s file structure.
