0

Under Vista when you call GetTempFilePath files get created in: C:\Users\User\AppData\Local\Temp\

Does anyone know where they get created under XP?

Jan Bannister
  • 4,859
  • 8
  • 38
  • 45

2 Answers2

5

It depends where the temporary folder is configured:

echo %TEMP%

Usually it is:

C:\Documents and Settings\username\Local Settings\Temp
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
2

You need to get the value of environment variable %TEMP%. You can find that under My Computer - > Properties -> Advanced -> Environment Variables

Prabhu
  • 3,434
  • 8
  • 40
  • 48