Walk a directory/Recursively: Difference between revisions

Added Arturo implementation
(Added Arturo implementation)
Line 93:
./Permutation_Sort.a68
</pre>
 
=={{header|Arturo}}==
 
<lang rebol>; list all files at current path
print list.recursive "."
 
; get all files at given path
; and select only the ones we want
 
; just select the files with .md extension
select list.recursive "some/path"
=> [".md" = extract.extension]
 
; just select the files that contain "test"
select list.recursive "some/path"
=> [in? "test"]</lang>
 
=={{header|AutoHotkey}}==
1,532

edits