Guest User

Untitled

a guest
Nov 16th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. folder = []
  2. for element in os.walk('/'):
  3. folder.append(element)
  4.  
  5. paths = []
  6. for absolute, dirs, files in folder:
  7. for file in files:
  8. paths.append(absolute + '/' + file)
Add Comment
Please, Sign In to add comment