11 lines
158 B
Python
11 lines
158 B
Python
#!/usr/bin/env python
|
|
|
|
from glob import glob
|
|
|
|
files = glob('../DATA/*.txt') # <1>
|
|
print(files, '\n')
|
|
|
|
no_files = glob('../JUNK/*.avi')
|
|
print(no_files, '\n')
|
|
|