#include <unistd.h>
int chdir(const char *pathname);
int fchdir(int fd);
在这两个函数中,分别用pathname或打开文件描述符来指定新的当前工作目录。
#include "apue.h"
int main(void)
{
if(chdir("/tmp")<0)
err_sys("chdir Failed");
printf("chdir to /tmp succeeded\n");
return 0;
}
得到当前工作目录完整的绝对路径
#include <unistd.h>
char *getcwd(char *buf,size_t size);
必须向此函数传递两个参数,一个是缓冲区地址buf,另一个是缓冲区的长度size(以字节为单位)。该缓冲区必须有足够的长度以容纳绝对路径名再加上一个终止null字节。
#include "apue.h"
int main(void)
{
char *ptr;
size_t size;
if(chdir("/usr/spool/uucppublic")<0)
{
err_sys("chdir Failed");
}
ptr=path_alloc(&size);
if(getcwd(ptr,size)==NULL)
err_sys("getcwd Failed");
printf("cwd=%s\n",ptr);
return 0;
}