5

我有一个类似的问题: 当前工作目录是视觉工作室目录

除了我在 Visual Studio 中使用 C++ 项目。有什么建议么?

例如,如果我尝试以下帖子中的解决方案: GetCurrentDirectory for startup App. C++

我明白了:

"C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 11.0\COMMON7\IDE"

但我希望它是我的项目/解决方案文件夹下的 Debug 文件夹。

4

1 回答 1

10

使用_fullpath 命令允许我提取当前目录。例如,您可以修改链接页面上的示例代码:

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <direct.h>

void PrintFullPath( char * partialPath )
{
   char full[_MAX_PATH];
   if( _fullpath( full, partialPath, _MAX_PATH ) != NULL )
      printf( "Full path is: %s\n", full );
   else
      printf( "Invalid path\n" );
}

int main( void )
{
   // Get current directory
   PrintFullPath( ".\\" );
}
于 2013-10-30T20:01:21.180 回答