Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def convert (directoryName):
  2. for path, dirs, files in os.walk(directoryName):
  3. for f in files:
  4. if f.endswith(".txt")
  5. f1=f
  6. path1=path
  7. p=mp.Process(target=convert_stdf_hdf5, args=(path1,f1,))
  8. p.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement