| 81 | } |
| 82 | |
| 83 | U32 FsOpenNode::getDirectoryEntryCount() { |
| 84 | this->loadDirEntries(); |
| 85 | return (U32)this->dirEntries.size(); |
| 86 | } |
| 87 | |
| 88 | std::shared_ptr<FsNode> FsOpenNode::getDirectoryEntry(U32 index, BString& name) { |
| 89 | if (!this->node) { |
no test coverage detected