| 137 | Result<std::string> FileSystem::NormalizePath(std::string path) { return path; } |
| 138 | |
| 139 | Result<std::vector<FileInfo>> FileSystem::GetFileInfo( |
| 140 | const std::vector<std::string>& paths) { |
| 141 | std::vector<FileInfo> res; |
| 142 | res.reserve(paths.size()); |
| 143 | for (const auto& path : paths) { |
| 144 | ARROW_ASSIGN_OR_RAISE(FileInfo info, GetFileInfo(path)); |
| 145 | res.push_back(std::move(info)); |
| 146 | } |
| 147 | return res; |
| 148 | } |
| 149 | |
| 150 | namespace { |
| 151 |
no test coverage detected