Chinaunix

标题: getcwd() [打印本页]

作者: typhoon85    时间: 2009-09-14 21:57
标题: getcwd()
函数名: getcwd
功  能: 取当前工作目录
用  法: char *getcwd(char *buf, int n);
程序例:
#include
#include
int main(void)
{
   char buffer[MAXPATH];
   getcwd(buffer, MAXPATH);
   printf("The current directory is: %s/n", buffer);
   return 0;
}

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/93660/showart_2052430.html




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2