Javascript File hasRandomAccess
From FreeSWITCH Wiki
Contents |
[edit]
Description
A boolean whether we have random access to this file or not (ie wil ((FreeSwitch Javascript File seek|seek)) work)
[edit]
Synopsis
hasRandomAccess
[edit]
Example
var fd = new File("/tmp/blah");
fd.open("read");
console_log("Do we have random access? " + fd.hasRandomAccess+"\n");
[edit]
