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

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))