| 129 | } |
| 130 | |
| 131 | std::shared_ptr<FsNode> Fs::getNodeFromLocalPath(const BString& currentDirectory, const BString& path, bool followLink, bool* isLink) { |
| 132 | return Fs::getNodeFromLocalPath(currentDirectory, path, nullptr, nullptr, followLink, isLink); |
| 133 | } |
| 134 | |
| 135 | BString Fs::getFullPath(const BString& currentDirectory, const BString& path) { |
| 136 | BString fullpath; |
nothing calls this directly
no test coverage detected