gpt4 book ai didi

c - 指定下载目录

转载 作者:行者123 更新时间:2023-11-30 14:42:02 24 4
gpt4 key购买 nike

我正在学习 C,正在通过代码下载 GitHub 存储库。这会将代码下载到当前工作目录(实质上是 C 应用程序的执行位置)。有没有办法设置下载目录?

意味着始终将文件下载到 C:\Data\ProdData\

#include <stdlib.h>

int main(void)
{
return system("git clone https://github.com/manleyManlious22/TestData");

}

最佳答案

您应该将其添加到您的命令中:

#include <stdlib.h>

int main(void)
{
return system("git clone https://github.com/manleyManlious22/TestData C:\\Data\\ProdData\\");
}

另外,我不在 Windows 上,所以无法检查路径,但它可以在 Linux 上运行。

通过system调用,您可以像在终端中一样运行命令。任何在您的 shell 中有效的命令都应该在您的 shell 中有效。

关于c - 指定下载目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54620948/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com