Skip to content

Instantly share code, notes, and snippets.

@ralphbean
Created January 31, 2012 21:45
Show Gist options
  • Save ralphbean/1713105 to your computer and use it in GitHub Desktop.
Save ralphbean/1713105 to your computer and use it in GitHub Desktop.
Scann0r
#!/usr/bin/env python
""" This is a python script for Paul! """
import os
for base_dir, sub_dirs, files in os.walk(os.getcwd()):
for filename in files:
print base_dir + "/" + filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment