fs.find
From ComputerCraft Wiki
| Returns a list of all the files and folders that match a wildcard expansion search. | |
| 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
| Lists all files containing 'gps' in the subfolders of the 'rom' folder. | |
| Code |
print(textutils.seralize(fs.find("/rom/*/gps")))
|
| Output | {"rom/apis/gps", "rom/help/gps", "rom/programs/gps"} |