nealrichardson commented on a change in pull request #8101: URL: https://github.com/apache/arrow/pull/8101#discussion_r482477183
########## File path: r/src/filesystem.cpp ########## @@ -230,6 +230,17 @@ cpp11::writable::list fs___FileSystemFromUri(const std::string& path) { return cpp11::writable::list({"fs"_nm = file_system, "path"_nm = out_path}); } +// [[arrow::export]] +void fs___CopyFiles(const std::shared_ptr<FileSystem>& src_fs, + const std::vector<std::string>& src_paths, + const std::shared_ptr<FileSystem>& dest_fs, Review comment: ```suggestion void fs___CopyFiles(const std::shared_ptr<fs::FileSystem>& src_fs, const std::vector<std::string>& src_paths, const std::shared_ptr<fs::FileSystem>& dest_fs, ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org