RosettaCodeData/Task/Walk-a-directory-Non-recursively/00DESCRIPTION
2016-12-05 22:15:40 +01:00

14 lines
509 B
Text

;Task:
Walk a given directory and print the ''names'' of files matching a given pattern.
(How is "pattern" defined? substring match? DOS pattern? BASH pattern? ZSH pattern? Perl regular expression?)
'''Note:''' This task is for non-recursive methods.   These tasks should read a ''single directory'', not an entire directory tree.
'''Note:''' Please be careful when running any code presented here.
;Related task:
*   [[Walk Directory Tree]]   (read entire directory tree).
<br><br>