You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+77-1Lines changed: 77 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,80 @@
2
2
Python getdents
3
3
===============
4
4
5
-
TBD
5
+
Iterate large directories efficiently with python.
6
+
7
+
About
8
+
=====
9
+
10
+
``python-getdents`` is a simple wrapper around Linux system call ``getdents64`` (see ``man getdents`` for details). `Here's <http://be-n.com/spw/you-can-list-a-million-files-in-a-directory-but-not-with-ls.html>`_ some study on why ``ls``, ``os.listdir()`` and others are so slow when dealing with extremely large directories.
11
+
12
+
13
+
TODO
14
+
====
15
+
16
+
* Verify that implementation works on platforms other than ``x86_64``.
0 commit comments