You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
273 B
11 lines
273 B
4 months ago
|
from __future__ import absolute_import, division, print_function
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
for dirpath, dirnames, filenames in os.walk(sys.argv[1]):
|
||
|
for n in dirnames:
|
||
|
print(os.path.join(dirpath, n))
|
||
|
for n in filenames:
|
||
|
print(os.path.join(dirpath, n))
|