Disk (API)
From ComputerCraft Wiki
Revision as of 22:03, 30 November 2012 by AfterLifeLochie (Talk | contribs) (Updated to API overview v2)
If you were looking for disks as in Floppies, go to Floppy Disk.
The Disk API allows you to interact with disk drives.
Method Name | Description |
disk.isPresent(string side ) | Checks the given side for a disk |
disk.hasData(string side ) | Checks whether the current disk is a floppy disk, as opposed to a music disk. |
disk.getMountPath(string side ) | Returns the directory path on which the disk on side has been mount (ex. /disk) |
disk.setLabel(string side, string label ) | Sets the label |
disk.getLabel(string side ) | Finds label |
disk.getDiskID(string side ) | Finds ID (unique for every disk) |
disk.hasAudio(string side ) | Checks whether the current disk is a music disk, as opposed to a floppy disk. |
disk.getAudioTitle(string side ) | Returns the audio title on the disk |
disk.playAudio(string side ) | Plays the audio |
disk.stopAudio(string side ) | Stops the audio |
disk.eject(string side ) | Ejects the disk. |