Javascript Misc fileDelete
From FreeSWITCH Wiki
Contents |
[edit]
Description
Deletes a file from the system.
[edit]
Synopsis
fileDelete(filename);
Where:
- filename - full path to filename (use unix slash "/" on win32)
Returns:
- true - on success
- false - on file not found or failure
[edit]
Example
rtn = fileDelete("/tmp/recording.wav");
[edit]
