Difference between revisions of "Disk.getMountPath"
From ComputerCraft Wiki
m (Moved to CAT:APIFunctions) |
m (Use type template) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=disk.getMountPath | |name=disk.getMountPath | ||
− | |args= | + | |args={{Type|string}} side |
|api=disk | |api=disk | ||
− | |returns=[[ | + | |returns={{Type|string}} path, or [[nil]] if the drive does not contain a floppy |
+ | |desc=Finds the directory name on the local computer where the contents of the [[Floppy Disk]] currently inserted in the drive can be found. | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
|examples= | |examples= |
Latest revision as of 19:12, 22 April 2013
Function disk.getMountPath | |
Finds the directory name on the local computer where the contents of the Floppy Disk currently inserted in the drive can be found. | |
Syntax | disk.getMountPath(string side) |
Returns | string path, or nil if the drive does not contain a floppy |
Part of | ComputerCraft |
API | disk |
Examples
Example | |
Finds the path of the bottom disk drive | |
Code |
print(disk.getMountPath("bottom")) |
Output | disk |