Fs.list

From ComputerCraft Wiki
Revision as of 21:30, 26 February 2012 by Immibis (Talk | contribs)

Jump to: navigation, search
Grid Redstone.png  Function fs.list
No description provided.
Syntax fs.list(string path)
Returns table list of files and folders in that path
Part of ComputerCraft
API fs

Examples

Grid paper.png  Example
Displays a list of all files and folders in the root directory of a computer
Code
for k,v in ipairs(fs.list("/")) do
 print(v)
end
Output A list of all files and folders in /