Hi,
Currently i am using following function to get the temporary folder path for current user:
string tempPath = System.IO.Path.GetTempPath();
On some machines it gives me temp folder path of current user like "C:\Documents and Settings\administrator\Local Settings\Temp\". On some machines it gives me system temp folder path like "C:\Windows\TEMP".
MSDN Documentation also says that above API returns current system's temporary folder. Is there any other API available which gives me current user's temporary folder path like "C:\Documents and Settings\administrator\Local Settings\Temp\"?