fs.find
From ComputerCraft Wiki
Function fs.find | |
Returns a list of all the files and folders that match a wildcard expansion search. Requires version 1.6 or later. | |
Syntax | fs.find(string wildcard) |
Returns | table list of files and folders on the computer that matches the search term. |
Part of | ComputerCraft |
API | fs |
Examples
Example | |
Lists all files containing 'gps' in the subfolders of the 'rom' folder. | |
Code |
print(textutils.serialize(fs.find("/rom/*/gps"))) |
Output | {"rom/apis/gps", "rom/help/gps", "rom/programs/gps"} |