1 /* 2 @author:CodingMengmeng 3 @theme:C++获取当前目录 4 @time:2017-1-6 21:03:34 5 @blog:http://www.cnblogs.com/codingmengmeng/ 6 */ 7 #include8 #include 9 using namespace std;10 /***********************************************************************11 *函数名称: _getcwd12 *函数原型: char * _cdecl _getcwd(char *_DstBuf,int _SizeInBytes)13 *函数功能: 得到当前路径名称14 *函数返回: 指向dir的指针15 *参数说明: _DstBuf-路径字符串;_SizeInBytes-路径最大长度16 *头 文 件: 17 *vs的版本: VS201318 *************************************************************************/19 int main(void)20 {21 char buff[1000];22 _getcwd(buff, 1000);23 cout << "当前路径是:" << buff << endl;24 getchar();25 return 0;26 }
运行结果: