标签:style blog http ar 文件 2014 div sp log
1chdir依赖的头文件
#include<unistd.h>
2函数定义
int chdir(const char *path);
int fchdir(int fd);
函数说明:
chdir的作用是改变工作目录
4getcwd依赖的头文件
#include<unistd.h>
5函数定义:
char *getcwd(char *buf, size_t size);
函数说明,通过这个函数获得路径
6.案例说明:
7.pathconf依赖的头文件
#include<unistd.h>
函数定义:
longfpathconf(int fd, int name);
longpathconf(char *path, int name);
8案例说明
下面的案例是求文件名的最大长度
运行结果:
8Linux服务器编程之:chdir()函数和cd命令,getcwd()函数和pwd
标签:style blog http ar 文件 2014 div sp log
原文地址:http://blog.csdn.net/tototuzuoquan/article/details/39300753