-
Notifications
You must be signed in to change notification settings - Fork 4
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
Recursive folder search #9
Comments
Sorry for not responding to this back in the day. I think recursive search is something that definitely should be added to the program. While it would be simple enough to do this for PE executables, I'm not too sure how the dynamic linker works on Linux and would need to delve a bit into the topic to figure out whether recursion is performed always, or if there are some extra conditions. |
Hi Suve ✋, I thought it may be too niche but I’m glad you find it as something that could be added. for further background, pyoxidizer aims to create portable Python executables and this is why I’m aiming for recursive reading since Python packages are split into folders etc... |
How difficult do you think it would be to modify this to recursively search folders including executable directly and not only get dependencies for exe but dlls that are in that folder and subfolders as well for windows?
Windows dumpbin /dependents for example can do exe's and dll dependencies.
The text was updated successfully, but these errors were encountered: