RosettaCodeData/Task/Walk-a-directory-Recursively/00-TASK.txt
2023-07-01 13:44:08 -04:00

14 lines
405 B
Text

;Task:
Walk a given directory ''tree'' and print files matching a given pattern.
'''Note:''' This task is for recursive methods.   These tasks should read an entire directory tree, not a ''single directory''.
'''Note:''' Please be careful when running any code examples found here.
;Related task:
*   [[Walk a directory/Non-recursively]]   (read a ''single directory'').
<br><br>