4

好吧,你们今天给了我很大的帮助,我得到了最后一个问题,这将完成我的程序,我希望不会很难回答。

我想要做的是获取用户临时文件夹路径并将其保存到 std::string。

我能够找到这个链接:http: //msdn.microsoft.com/en-us/library/aa364992%28VS.85%29.aspx

该链接的唯一问题是我不明白如何将其保存到字符串中。

4

2 回答 2

7
std::wstring strTempPath;
wchar_t wchPath[MAX_PATH];
if (GetTempPathW(MAX_PATH, wchPath))
    strTempPath = wchPath;

如果您不使用 Unicode ,请更改wstringstringwchar_ttocharGetTempPathWto 。GetTempPathA

于 2013-08-25T02:54:12.877 回答
-1

此函数似乎使用 C 样式字符串。但是,您可以将其转换为 C++ 字符串。

#define MAX_LENGTH 256 // a custom maximum length, 255 characters seems enough

#include <cstdlib> // for malloc and free (optional)
#include <string>

using namespace std;

// other code

char *buffer = malloc(MAX_LENGTH);
string temp_dir;

if (GetTempPath(MAX_LENGTH, buffer) != 0) temp_dir = string(buffer);
else {/* GetTempPath returns 0 on error */}

free(buffer); // always free memory used for the C-Style String

// other code

您还可以使用new[]and分配和释放内存,delete[]如果您发现它更容易!您也可以使用静态内存分配!

我希望这会有所帮助...:D

于 2013-08-25T03:04:11.810 回答