Skip to content

Instantly share code, notes, and snippets.

@Xifeng2009
Created October 26, 2023 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xifeng2009/d3041b0e5134fb9c778ca26c54eaf5cf to your computer and use it in GitHub Desktop.
Save Xifeng2009/d3041b0e5134fb9c778ca26c54eaf5cf to your computer and use it in GitHub Desktop.
Recursively Read Filenames in Dir
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