Difference between revisions of "Disk (API)"

From ComputerCraft Wiki
Jump to: navigation, search
Line 8: Line 8:
 
!style="background:#EEE" width="*"|Description
 
!style="background:#EEE" width="*"|Description
 
|-
 
|-
|[[disk.isPresent|isPresent]]( side )
+
|[[disk.isPresent|isPresent]]([[string (type)|string]] side )
 
|Checks the given side for a disk
 
|Checks the given side for a disk
 
|-
 
|-
|[[disk.hasData|hasData]]([[string]] side )
+
|[[disk.hasData|hasData]]([[string (type)|string]] side )
 
|Checks the disk for data
 
|Checks the disk for data
 
|-
 
|-
Line 17: Line 17:
 
|Returns the directory path on which the disk on '''side''' has been mount (ex. /disk)
 
|Returns the directory path on which the disk on '''side''' has been mount (ex. /disk)
 
|-
 
|-
|[[disk.setLabel|setLabel]]([[string]] side )
+
|[[disk.setLabel|setLabel]]([[string (type)|string]] side )
 
|Sets the label
 
|Sets the label
 
|-
 
|-
|[[disk.getLabel|getLabel]]([[string]] side )
+
|[[disk.getLabel|getLabel]]([[string (type)|string]] side )
 
|Finds label
 
|Finds label
 
|-
 
|-
|[[disk.hasAudio|hasAudio]]([[string]] side )
+
|[[disk.hasAudio|hasAudio]]([[string (type)|string]] side )
 
|Checks if the disk is a music disk
 
|Checks if the disk is a music disk
 
|-
 
|-
|[[disk.playAudio|playAudio]]([[string]] side )
+
|[[disk.playAudio|playAudio]]([[string (type)|string]] side )
 
|Plays the audio
 
|Plays the audio
 
|-
 
|-
|[[disk.stopAudio|stopAudio]]([[string]] side )
+
|[[disk.stopAudio|stopAudio]]([[string (type)|string]] side )
 
|Stops the audio
 
|Stops the audio
 
|-
 
|-
|[[disk.eject|eject]]([[string]] side )
+
|[[disk.eject|eject]]([[string (type)|string]] side )
 
|Ejects the disk.
 
|Ejects the disk.
 
|}
 
|}
 
[[Category:APIs]]
 
[[Category:APIs]]

Revision as of 12:14, 26 February 2012

If you were looking for disks as-in Floppies, go to Floppy Disk.


The Disk API allows you to mess around with disk drives.

Method name Description
isPresent(string side ) Checks the given side for a disk
hasData(string side ) Checks the disk for data
getMountPath(string side ) Returns the directory path on which the disk on side has been mount (ex. /disk)
setLabel(string side ) Sets the label
getLabel(string side ) Finds label
hasAudio(string side ) Checks if the disk is a music disk
playAudio(string side ) Plays the audio
stopAudio(string side ) Stops the audio
eject(string side ) Ejects the disk.