Ein schnelles Testprogramm
#include <stdio.h>
#include <stdlib.h>
#include <cstdlib>
#include <iostream>
int main()
{
const char* tf = std::tmpnam(nullptr);
std::cout << "tmpfile: " << tf << '\n';
return 0;
}
und ein ltrace
[email protected]:~$ ltrace ./test.exe
__libc_start_main(0x400836, 1, 0x7ffedf17e178, 0x4008e0 <unfinished ...>
_ZNSt8ios_base4InitC1Ev(0x601171, 0xffff, 0x7ffedf17e188, 160) = 0
__cxa_atexit(0x400700, 0x601171, 0x601058, 0x7ffedf17df50) = 0
tmpnam(0, 0x7ffedf17e178, 0x7ffedf17e188, 192) = 0x7fe4db5a0700
_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(0x601060, 0x400965, -136, 0x7fe4db2d13d5) = 0x601060
_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(0x601060, 0x7fe4db5a0700, 0x601060, 0xfbad2a84) = 0x601060
_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(0x601060, 10, 0x7fe4db91d988, 0x57474f44696b656ctmpfile: /tmp/filekiDOGW
) = 0x601060
_ZNSt8ios_base4InitD1Ev(0x601171, 0, 0x400700, 0x7fe4db59fd10) = 0x7fe4db922880
+++ exited (status 0) +++
bestätigt, dass je die Manpage, werden keine Umgebungsvariablen von std::tmpnam
konsultiert, es P_tmpdir
nur verwendet, welche eine Konstante ist.
Wenn dies rein für Linux ist, könnten Sie mkstemp
statt:
#include <stdio.h>
#include <stdlib.h>
#include <cstdlib>
#include <iostream>
#include <unistd.h>
int main()
{
char tmpl[] = "/var/tmp/testXXXXXX";
int f = mkstemp(tmpl);
if (f < 0) {
std::cerr << "mkstemp failed\n";
return 1;
}
std::cout << tmpl << '\n';
close(f);
return 0;
}
Demo:
[email protected]:~$ g++ -o test.exe test.cpp -std=c++14
[email protected]:~$ ./test.exe
/var/tmp/testEFULD4
Es wird gesagt, dass die Linux-Implementierung tatsächlich die Dateien Solange LINK, so dass sie nicht wirklich von außerhalb des/proc-Dateisystems wiederhergestellt werden –
Nirgends wird gesagt, dass 'tmpfile' eine solche Umgebungsvariable verwenden wird. [Die Linux-Handbuchseite] (http://man7.org/linux/man-pages/man3/tmpfile.3.html) sagt "Glibc wird das Pfadpräfix' P_tmpdir' versuchen, das in '' "definiert ist, aber das ist alles . –
Wie kann ich den Speicherort "P_tmpdir" festlegen? und wird das mein Problem lösen? –