标签: linux glibc cp file-copying
我正在从链接中查看copy命令的实现: http://src.gnu-darwin.org/src/bin/cp/cp.c.html 它的核心是使用copy_file函数。 if(copy_file(curr,dne)) badcp = rval = 1;
有人可以告诉我如何实现copy_file或其实现的任何链接?
答案 0 :(得分:1)
以下是实施该文件的文件: http://src.gnu-darwin.org/src/bin/cp/utils.c.html