Implement FileNode::exists
Currently, FileNode::isAvailable tells me if the file exists AND can be opened with the requested mode. This can be a trap if I forget to set file mode to Mode_Input and the file is readonly, as it returns false even though the file exists. It wou...