Difference between revisions of "Shell.programs"
From ComputerCraft Wiki
m (Forgot to add a space at the front to declare it as code :-/) |
MKlegoman357 (Talk | contribs) (Renamed optional argument) |
||
| (One intermediate revision by one other user not shown) | |||
| Line 1: | Line 1: | ||
| − | {{ | + | {{lowercase}} |
| − | + | {{Function | |
| + | |name=shell.programs | ||
| + | |args=[<nowiki/>{{type|boolean}} showHidden] | ||
| + | |returns={{type|table}} programs | ||
| + | |api=Shell | ||
| + | |addon=ComputerCraft | ||
| + | |desc=Returns a table of files in the current directory and in rom/programs. If ''showHidden'' is true, will also return files that begin with a period (hidden files). | ||
| + | |examples= | ||
| + | {{Example | ||
| + | |desc=The program lists files in the current directory and in rom/programs, not including files that are prefixed with a period (hidden files). | ||
| + | |code=textutils.tabulate(shell.programs()) | ||
| + | |output=A tabulated list of programs. This is basically the 'programs' program. | ||
| + | }} | ||
| + | {{Example | ||
| + | |desc=The program lists all files in the current directory and in rom/programs. | ||
| + | |code=textutils.tabulate(shell.programs(true)) | ||
| + | |output=A tabulated list of programs. This is basically the 'programs' program, but it shows hidden files too. | ||
| + | }} | ||
| + | }} | ||
| − | + | [[Category:API_Functions]] | |
| − | + | ||
| − | + | ||
Latest revision as of 19:29, 4 April 2014
| Returns a table of files in the current directory and in rom/programs. If showHidden is true, will also return files that begin with a period (hidden files). | |
| Syntax | shell.programs([boolean showHidden]) |
| Returns | table programs |
| Part of | ComputerCraft |
| API | Shell |
Examples