这样做的最佳方法是什么?tmpnam() 返回驱动器根目录中文件的路径,这需要 Windows Vista 上的管理员权限,因此这不是一个选项。
5 回答
GetTempPath和GetTempFileName应该可以工作。
Windows 上的环境变量 %TEMP% 指向用户临时目录。
在托管 C++ 中,您可以调用 Path::GetTempFileName() ,它将在用户临时目录中为您提供一个临时文件(可以使用 Path::GetTempPath() 找到)。GetTempFileName() 基本上只是为您提供 %TEMP% 路径中的文件的路径,使用 GUID 作为文件名。然后,您使用该路径创建文件并使用它做您想做的事情。您可以使用任何可以访问当前进程环境变量的语言来执行类似的逻辑。
希望有帮助,
马丁。
您是否尝试过将环境变量 TEMP 和 TMP 设置为所有人可写的目录?要更改 XP 中的环境变量(不熟悉 Vista),请转到系统属性,[高级]选项卡,[环境变量]按钮。
也许您可以在 kernel32.dll 中使用 Win32 方法 GetTempPath()。这由 System.IO.Path.GetTempFileName() 包装在 .NET 中。
在 XP 上,这会返回 C:\Documents and Settings\username\Local Settings\Temp\ 中的路径,因此您不需要管理员权限。
如果您关心互操作性,tmpnam 的手册页建议:
tmpnam 手册页
BUGS
Never use this function. Use mkstemp(3) instead.
mkstemp 手册页
SYNOPSIS
#include <stdlib.h>
int mkstemp(char *template);
DESCRIPTION
The mkstemp() function generates a unique temporary file name from template. The last six characters of template must be
XXXXXX and these are replaced with a string that makes the filename unique. The file is then created with mode read/write
但所有这些都表明您已经准备好以 TMP 环境变量内容为前缀的模板。