description.md
1Copies a file or directory in the project, and returns confirmation that the copy succeeded.
2Directory contents will be copied recursively (like `cp -r`).
3
4This tool should be used when it's desirable to create a copy of a file or directory without modifying the original.
5It's much more efficient than doing this by separately reading and then writing the file or directory's contents,
6so this tool should be preferred over that approach whenever copying is the goal.