Created
October 26, 2023 08:01
-
-
Save Xifeng2009/d3041b0e5134fb9c778ca26c54eaf5cf to your computer and use it in GitHub Desktop.
Recursively Read Filenames in Dir
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for path, _, filenames in os.walk(os.path.expanduser(nuclei_templates_path)): | |
for filename in filenames: | |
print(os.path.join(path, filename)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment