Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
benjolo
/
InterpreTalk
like
3
Paused
App
Files
Files
Community
2
c8e24c3
InterpreTalk
/
backend
/
test.py
benjolo
Create test.py
4613e60
verified
7 months ago
raw
Copy download link
history
blame
Safe
183 Bytes
import
os
def
absoluteFilePaths
(
directory
):
for
dirpath,_,filenames
in
os.walk(directory):
for
f
in
filenames:
yield
os.path.abspath(os.path.join(dirpath, f))