12 lines
179 B
Python
12 lines
179 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
import sys
|
||
|
sys.path.append('../..')
|
||
|
|
||
|
import fstools
|
||
|
|
||
|
|
||
|
for dirname in fstools.dirlist(path='..', rekursive=True):
|
||
|
print(dirname)
|