DeleteAudioFile Method



 
The DeleteAudioFile method deletes an audio file from the AudioFiles collection.


Syntax

    SiteKiosk.CDRecording.DeleteAudioFile(path)
    
Parameters
    path String that specifies the absolute path of the file.
Return Value
    None.
Remarks Examples
    The following example deletes an audio file from the AudioFiles collection.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.CDRecording.AddAudioFile("c:/myaudio.wav");
    SiteKiosk.CDRecording.DeleteAudioFile("c:/myaudio.wav");
    </SCRIPT>
    

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top