Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python glob all files in directory recursively

import glob
for f in glob.glob('/path/**/*.c', recursive=True):
    print(f)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #glob #files #directory #recursively
ADD COMMENT
Topic
Name
2+6 =