vote up 7 vote down star
3

I am busy writing an application that runs under windows

Where is the correct place to save temporary files ?

flag

3  
The temp directory? – Sean Bright Aug 7 at 20:54

9 Answers

vote up 13 vote down check

If you are using .NET, please use Path.GetTempPath(). This will guarantee that you use the temporary directory assigned to the user that runs your application, regardless of where it is stored.

If you browse the file system, you will notice that there are many "temp" directories:

  • ~\Temp
  • ~\Windows\Temp
  • ~\Users\userName\AppData\Local\Temp

... and many more. Some of these paths are OS-dependent, and won't be present on certain windows flavors. So, save yourself some time and hassle, and let the .NET framework figure out where the "temp" path is located.

link|flag
1  
That - or use isolated storage, to which a user is always guaranteed to have write access! – marc_s Aug 7 at 21:11
1  
Better yet, just use Path.GetTempFileName() which will generate the file name as well, and return the full path to it (in the appropriate temp folder). – Pavel Minaev Aug 15 at 2:30
vote up -3 vote down

just put them in the recycle bin

link|flag
vote up -3 vote down

C:\Documents and Settings\username\Application Data\IsolatedStorage

link|flag
8  
Yes - but please use the documented Isolated Storage API and don't hardcode this path! On a system with a German version of Windows, this would be e.g. "C:\Dokumente\....." and if you hardcode this path, your app will break. FOLKS: IF THERE ARE APIs TO DO SOMETHING, USE THEM!! – marc_s Aug 7 at 21:12
vote up 3 vote down

It depends on the language you are using:

string tempFolder = System.IO.Path.GetTempPath();

will return you the appropriate folder in C# for instance.

or, the environment variables TEMP or TMP if you must.

link|flag
vote up 7 vote down

Use GetTempPath and and possibly GetTempFileName to determine where to put your temporary files. This is the most reliable, enduser-friendly, and future proof way to get a temporary location for files.

link|flag
vote up 3 vote down

C:\Temp is NOT a good choice.

If you are using .Net use code like this:

           string baseFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);

        string cfgFolder = Path.Combine(baseFolder, "MyAppName");


        try
        {
            if (!Directory.Exists(cfgFolder))
            {
                Directory.CreateDirectory(cfgFolder);
            }
        }
        catch { } // If no access, not much we can do.

to get a place for medium-term storage of app data, or Path.GetTempPath() for transient storage of data.

link|flag
Why is it not a good idea to use c:\Temp? I'm not disagreeing with your point, I'm just curious as to your reasoning =) – ricebowl Aug 7 at 21:00
2  
C:\ might be a really small partition, and in many cases, normal (non-admin) users don't have write permissions on C:\ so they can't create C:\temp – marc_s Aug 7 at 21:10
Moreover, who's to say that C:\temp even exists on non-English Windows? – Mark Rushakoff Aug 7 at 21:35
vote up 3 vote down

Use the GetTempPath API, or the equivalent for your programming environment.

link|flag
vote up 2 vote down

In the temp directory?

Use GetTempPath or in a batch file %TEMP%

link|flag
vote up 3 vote down

\Windows\system32 or \windows\system32\drivers

It's more fun that way.

link|flag
6  
funny... but only M$ does crazy things like that... – IPX Ares Aug 7 at 20:58
unclear sarcasm not appreciated – Jason S Aug 7 at 21:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.