README 535 B

1234567891011121314
  1. scandir, a better directory iterator and faster os.walk()
  2. scandir() is a generator version of os.listdir() that returns
  3. an iterator over files in a directory, and also exposes the
  4. extra information most OSes provide while iterating files in a
  5. directory (such as type and stat information).
  6. This module also includes a version of os.walk() that uses
  7. scandir() to speed it up significantly.
  8. NOTE: If you're using Python version 3.5+, os.scandir() and the
  9. speed improvements to os.walk() are already available in the
  10. standard library.