| 313 | } |
| 314 | |
| 315 | int64_t FilesystemView::GetFilesize(std::string_view path) const { |
| 316 | assert(fs); |
| 317 | return fs->GetFilesize(MakePath(path)); |
| 318 | } |
| 319 | |
| 320 | DirectoryTree::DirectoryListType* FilesystemView::ListDirectory(std::string_view path) const { |
| 321 | assert(fs); |
no outgoing calls
no test coverage detected