├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── _scandir.c ├── benchmark.py ├── osdefs.h ├── scandir.py ├── setup.py ├── test ├── run_tests.py ├── test_scandir.py └── test_walk.py └── winreparse.h /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/README.rst -------------------------------------------------------------------------------- /_scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/_scandir.c -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/benchmark.py -------------------------------------------------------------------------------- /osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/osdefs.h -------------------------------------------------------------------------------- /scandir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/scandir.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/setup.py -------------------------------------------------------------------------------- /test/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/test/run_tests.py -------------------------------------------------------------------------------- /test/test_scandir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/test/test_scandir.py -------------------------------------------------------------------------------- /test/test_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/test/test_walk.py -------------------------------------------------------------------------------- /winreparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/scandir/HEAD/winreparse.h --------------------------------------------------------------------------------