1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import os
def get_file_list(directory: str,
extensions: list[str],
exclude: list[str]=None) -> list[str]:
out: list[str] = []
for root, dirs, files in os.walk(directory):
if exclude is not None:
dirs[:] = [d for d in dirs if d not in exclude]
for f in files:
if f.endswith(tuple(extensions)):
out.append(os.path.join(root, f).replace(directory, '')[1:])
return out
def get_dir_structure(directory: str,
exclude: list[str]=None) -> list[str]:
out: list[str] = []
for root, dirs, files in os.walk(directory):
if exclude is not None:
dirs[:] = [d for d in dirs if d not in exclude]
for d in dirs:
if root in out:
out.remove(root)
out.append(os.path.join(root, d))
return [o.replace(directory, '')[1:] for o in out]
def get_all_files(src: str) -> tuple[list[str], list[str], list[str]]:
md_files: list[str] = get_file_list(src,
['.md', '.markdown'],
['templates'])
html_files: list[str] = get_file_list(src,
['.html'],
['templates'])
dirs: list[str] = get_dir_structure(src,
['templates'])
return (dirs, md_files, html_files)
|