Walk a directory/Recursively: Difference between revisions

Content added Content deleted
(/* {{header|PureBasic}} Added PureBasic)
m (→‎{{header|PureBasic}}: some cleanup)
Line 666:
EndIf
Wend
EndProcedure</lang>
<lang PureBasic>;- Implementation; Find all .log-files in the C:\Windows tree
 
;- Implementation; Find all .log-files in the C:\Windows tree
ExamineDirectory(1,"C:\WINDOWS\","")
WalkRecursive(1,"C:\WINDOWS\","\.log$")