Walk a directory/Recursively: Difference between revisions

Content added Content deleted
(Added Arturo implementation)
Line 93: Line 93:
./Permutation_Sort.a68
./Permutation_Sort.a68
</pre>
</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}}==
=={{header|AutoHotkey}}==