Difference between revisions of "Disk.hasAudio"
From ComputerCraft Wiki
m (Moved to CAT:APIFunctions) |
m (Corrected mapping from "Boolean" to "Boolean (type)") |
||
Line 4: | Line 4: | ||
|args=[[string (type)|string]] side | |args=[[string (type)|string]] side | ||
|api=disk | |api=disk | ||
− | |returns=[[boolean]] there is audio saved on the disk | + | |returns=[[boolean_(type)|boolean]] there is audio saved on the disk |
|addon=ComputerCraft | |addon=ComputerCraft | ||
|examples= | |examples= |
Revision as of 13:43, 30 November 2012
Function disk.hasAudio | |
No description provided. | |
Syntax | disk.hasAudio(string side) |
Returns | boolean there is audio saved on the disk |
Part of | ComputerCraft |
API | disk |
Examples
Example | |
Checks for audio saved on the disk in the bottom drive | |
Code |
print(disk.hasAudio("bottom")) |
Output | true if there is audio, otherwise false |