VxWorks 上的 CopyFile()
VxWorks 上复制文件的简单 API(类似于 Windows API 上的 CopyFile())是什么?
What is simple API for copy file(s) on VxWorks (look like a CopyFile() on Windows API)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我假设您正在谈论在命令 shell 中工作,因此命令可能如下所示:
我希望这会有所帮助
哈吉乔
I assume you are talking about working in the command shell, so the commands may look like:
I hope this helps
HadziJo
一般来说,任何可以在 shell 中执行的东西都可以从 shell 之外的程序中调用。
您还可以查看
xcopy
的手册页,具体取决于您需要的功能。Generally, anything that can be executed at the shell can be called from a program other than the shell.
You might look at the man page for
xcopy
as well depending on the functionality you need.您还可以在 cmd shell (vxWorks 6.x) 上使用“cp”命令,但这不是 API,因此可能无法准确回答您的问题。
You can also use "cp" command on cmd shell (vxWorks 6.x), but that is not API, so probably doesn't answer your question exactly.
我发现的最好的方法是 xcopy("fromPath", "toPath")。它将递归地(包括文件夹和子文件夹)复制(复制)从Path到Path的所有内容。
查看 VxWork 手册:http://www.vxdev。 com/docs/vx55man/vxworks/ref/usrFsLib.html#xcopy
The best method I found is
xcopy("fromPath", "toPath")
. It will recursively (including folders and subfolders) copy (duplicate) everything fromPath toPath.check out the VxWork Manual: http://www.vxdev.com/docs/vx55man/vxworks/ref/usrFsLib.html#xcopy