What is the simplest way to get the full recursive list of files inside a folder with python? I know about os.walk(), but it seems overkill for just getting the unfiltered list of all files. Is it really the only option?
- 29,742
- 25
- 114
- 177
- 50,483
- 45
- 130
- 185
-
Does this answer your question? [Recursive sub folder search and return files in a list python](https://stackoverflow.com/questions/18394147/recursive-sub-folder-search-and-return-files-in-a-list-python) – Tomerikoo Nov 16 '21 at 15:08
6 Answers
There's nothing preventing you from creating your own function:
import os
def listfiles(folder):
for root, folders, files in os.walk(folder):
for filename in folders + files:
yield os.path.join(root, filename)
You can use it like so:
for filename in listfiles('/etc/'):
print filename
- 45,713
- 12
- 68
- 88
- 275,078
- 51
- 420
- 480
-
Thanks! I just wanted to make sure this function wasn't already a part of the standard library. – static_rtti Sep 14 '12 at 08:43
-
Nice solution! But `find .` also lists directories. The fix is very easy though. :) – Lauritz V. Thaulow Sep 14 '12 at 08:55
os.walk() is not overkill by any means. It can generate your list of files and directories in a jiffy:
files = [os.path.join(dirpath, filename)
for (dirpath, dirs, files) in os.walk('.')
for filename in (dirs + files)]
You can turn this into a generator, to only process one path at a time and safe on memory.
- 963,270
- 265
- 3,804
- 3,187
Either that or manually recursing with isdir() / isfile() and listdir() or you could use subprocess.check_output() and call find .. Bascially os.walk() is highest level, slightly lower level is semi-manual solution based on listdir() and if you want the same output find . would give you for some reason you can make a system call with subprocess.
- 9,552
- 2
- 37
- 42
pathlib.Path.rglob is pretty simple. It lists the entire directory tree
(The argument is a filepath search pattern. "*" means list everything)
import pathlib
for path in pathlib.Path("directory_to_list/").rglob("*"):
print(path)
- 986
- 4
- 12
import os
path = "path/to/your/dir"
for (path, dirs, files) in os.walk(path):
print files
Is this overkill, or am I missing something?
- 868
- 3
- 8
- 17
-
You are absolutely right. It looks way more difficult than it actually is. – Hans Then Sep 14 '12 at 09:40