fs.getName
From ComputerCraft Wiki
Revision as of 19:43, 22 April 2013 by Hawk777 (Talk | contribs) (Copy description from API page and use type template)
| Gets the final component of a pathname. Pathname components are separated by forward slashes. The path need not exist. | |
| Syntax | fs.getName(string path) |
| Returns | string the last path component of the path, or "root" if the path refers to the root directory |
| Part of | ComputerCraft |
| API | fs |
Examples
| Gets the last path component of a file | |
| Code |
print(fs.getName("rom/apis/colors"))
|
| Output | colors |