fs.list
From ComputerCraft Wiki
Revision as of 15:29, 27 May 2012 by Zalerinian (Talk | contribs) (Made the cod easier to read and added an explanation of it.)
| Returns a list of all the files contained in a directory as a table | |
| Syntax | fs.list(string path) |
| Returns | table list of files and folders in path, which must be a directory |
| Part of | ComputerCraft |
| API | fs |
Examples
abc = fs.list("") <- will get all the files and directories in the system root into a table, all saved as 'abc'. i = 1 <- sets i equal to one. while i ~= nil do <- While i isn't nil, continue to do this. print(abc[i]) <- print the files and directories. i = i+1 <- add 1 to i each run so a different file/directory gets listed next. end <- end the loop.