Walk a directory/Recursively: Difference between revisions

Added BaCon code.
(Added BaCon code.)
Line 99:
out .= A_LoopFileName "`n"
MsgBox,% out</lang>
 
=={{header|BaCon}}==
This line will recursively walk though all directories starting from the current directory ".":
<lang qbasic>PRINT WALK$(".", 1, ".+", TRUE, NL$)</lang>
 
=={{header|Batch File}}==
Anonymous user