| 755 | } |
| 756 | |
| 757 | std::vector<MockFileInfo> MockFileSystem::AllFiles() { |
| 758 | auto guard = impl_->lock_guard(); |
| 759 | |
| 760 | std::vector<MockFileInfo> result; |
| 761 | impl_->DumpFiles("", impl_->RootDir(), &result); |
| 762 | return result; |
| 763 | } |
| 764 | |
| 765 | Status MockFileSystem::CreateFile(const std::string& path, std::string_view contents, |
| 766 | bool recursive) { |