5 lines
119 B
Python
5 lines
119 B
Python
from lib import ListGenerator
|
|
|
|
for i in ListGenerator('audio'):
|
|
print(i.__repr__())
|
|
print(f"{i.path}/{i.name}") |