Guest User

Untitled

a guest
Jan 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. file_paths = [os.path.join(root, d, f) for root,dirs,files in os.walk('.') for d in dirs for f in files]
  2. for path in file_paths:
  3. print path
  4. shutil.copy(path, target)
Add Comment
Please, Sign In to add comment