LocalFile.close Member

Syntax

object.close();

Returns

Remarks

See Also

Source Code

function fo_close()
{
if ("outputStream" in this)
this.outputStream.close();
if ("inputStream" in this)
this.inputStream.close();
}