Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ddnet/ddnet
/ recursive_file_list
Function
recursive_file_list
scripts/fix_style.py:11–15 ·
view source on GitHub ↗
(path)
Source
from the content-addressed store, hash-verified
9
10
11
def
recursive_file_list(path):
12
result = []
13
for
dirpath, _, filenames in os.walk(path):
14
result += [os.path.join(dirpath, filename)
for
filename in filenames]
15
return
result
16
17
18
IGNORE_FILES = []
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected