漩涡鸣人 发表于 2014-9-13 00:11:59

C标准库之文件目录操作函数——_getcwd

本帖最后由 漩涡鸣人 于 2014-9-13 00:14 编辑

功能:_getcwd函数用于获得当前路径名
函数原型:
int _getcwd (char * buffer, int maxlen);
参数:
参数说明
buffer存储路径的字符串
maxlen字符串长度

返回值:指向字符串buffer的指针
要求:
函数需要的头文件
_getcwd<direct.h>

举例: #include <stdio.h>
#include <direct.h>

void main()
{
    char * p, path;
    p = _getcwd(path, sizeof(path));
    printf("%s\n%s\n", p, path);//一般来讲两个值一样,都输出一下直观一些
}
页: [1]
查看完整版本: C标准库之文件目录操作函数——_getcwd