gpt4 book ai didi

c - 如何在 linux 的小型 c shell 中模拟 dos "CD.."

转载 作者:IT王子 更新时间:2023-10-29 01:04:07 28 4
gpt4 key购买 nike

这是我的一个小项目,我正在尝试将当前进程工作目录设置为 One directory up as如果我当前的目录是 ..\downloads\movies我想要将目录设置为 ..\downloads

的代码

我知道这可以通过获取当前工作目录路径并从中提取我需要的目录路径然后执行 chdir() 来实现,但是这段代码需要尽可能高效和轻便,我发现上面方法有点麻烦。

提前致谢。

最佳答案

您希望变得多简单和高效?有点像

if (chdir("..") < 0)
{
perror("chdir");
exit(1);
}

关于c - 如何在 linux 的小型 c shell 中模拟 dos "CD..",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2412942/

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