在C语言中,你可以使用标准库函数来改变当前工作目录。以下是一些常用的函数:
1. `chdir()` 改变当前工作目录。
2. `fchdir()` 改变文件描述符指定的文件的工作目录。
3. `getcwd()` 获取当前工作目录的路径。
下面是如何使用这些函数的示例:
```c
include
include
include
int main() {
char new_dir[256];
char current_dir[256];
// 获取当前工作目录
if (getcwd(current_dir, sizeof(current_dir)) == NULL) {
perror("getcwd() error");
return 1;