Advertisement
Guest User

Untitled

a guest
May 20th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import os
  2.  
  3.  
  4. def dbSearch():
  5.     for root, directories, files in os.walk('./rawdump'):
  6.         for file in files:
  7.             fileOpen = open(file, 'rb')
  8.  
  9. FileNotFoundError: [Errno 2] No such file or directory: '_manifest'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement