Javascript File isOpen
From FreeSWITCH Wiki
Contents |
[edit]
Description
A boolean whether or not the file is open
[edit]
Synopsis
isOpen
[edit]
Example
var fd = new File("/tmp/blah");
console_log("Is the file open? " + fd.isOpen + "\n");
fd.open("read");
console_log("Is the file open? " + fd.isOpen + "\n");
fd.close();
[edit]
