C++代码中如何调用ubuntu系统命令cp
时间: 2024-05-15 18:18:41 浏览: 222
Ubuntu下VIM配置成C++开发编辑器
5星 · 资源好评率100%
在 C 代码中可以使用函数`system()`来调用系统命令。要调用`cp`命令可以使用以下代码:
```c
#include <stdlib.h>
int main() {
system("cp source_file destination_file");
return 0;
}
```
其中,`source_file`是源文件的路径,`destination_file`是目标文件的路径。在执行`system()`函数时,它将运行指定的命令,然后等待命令完成。如果命令成功执行,则`system()`函数将返回0,否则返回非零值。
阅读全文