Walk a directory/Recursively: Difference between revisions

→‎{{header|LiveCode}}: -- implement file name pattern matching, as the task indicates -- remove file extension matching, which is irrelevant to the task
(→‎{{header|LiveCode}}: -- implement file name pattern matching, as the task indicates -- remove file extension matching, which is irrelevant to the task)
Line 1,378:
 
Example
<lang LiveCode>put pathsForDirectoryAndWildcardPattern(the documents folder, "*.livecode*"</lang>
Output
<pre>...
<pre>... /Users/xxx/music/albumx/trackx.mp3
/Users/xxx/musicDocuments/albumx/trackx2abc.mp3livecode
/Users/xxx/musicDocuments/albumy/trackydef.mp3 ...</pre>livcodescript
...</pre>
 
=={{header|Lua}}==
Anonymous user