11 lines
159 B
Python
11 lines
159 B
Python
#!/usr/bin/env python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
import sys
|
|
sys.path.append('../..')
|
|
|
|
import fstools
|
|
|
|
|
|
print(fstools.uid_filelist('..', '*.py', rekursive=True))
|