Change to python project format
This commit is contained in:
parent
b20465a3d7
commit
61599cb76c
27 changed files with 268 additions and 123 deletions
6
src/jgutils/filesystem/filesystem.py
Normal file
6
src/jgutils/filesystem/filesystem.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from pathlib import Path
|
||||
|
||||
def get_files_recursive(search_path: Path,
|
||||
extension: str) -> list[Path]:
|
||||
return list(search_path.rglob(f"*.{extension}"))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue