vote up 3 vote down star
1

Hello all.
What are a good way to ensure that a tempfile is deleted if my application closes or crashes? Ideally I would like to obtain a tempfile, use it and then forget about it.

Right now I keep a list of my tempfiles and delete them with an eventhandler that triggers on Application.ApplicationExit.

Is there a better way?

flag

It's a shame .NET doesn't have something like Java's deleteOnExit() in the File class... not that it works properly if a file isn't closed. – R. Bemrose Dec 30 '08 at 13:45

5 Answers

vote up 3 vote down check

Nothing is guaranteed if the process is killed prematurely, however, I use "using" to do this..

using System;
using System.IO;
sealed class TempFile : IDisposable
{
    string path;
    public TempFile() : this(System.IO.Path.GetTempFileName()) { }

    public TempFile(string path)
    {
        if (string.IsNullOrEmpty(path)) throw new ArgumentNullException("path");
        this.path = path;
    }
    public string Path
    {
        get
        {
            if (path == null) throw new ObjectDisposedException(GetType().Name);
            return path;
        }
    }
    ~TempFile() { Dispose(false); }
    public void Dispose() { Dispose(true); }
    private void Dispose(bool disposing)
    {
        if (disposing)
        {
            GC.SuppressFinalize(this);                
        }
        if (path != null)
        {
            try { File.Delete(path); }
            catch { } // best effort
            path = null;
        }
    }
}
static class Program
{
    static void Main()
    {
        string path;
        using (var tmp = new TempFile())
        {
            path = tmp.Path;
            Console.WriteLine(File.Exists(path));
        }
        Console.WriteLine(File.Exists(path));
    }
}

Now when the TempFile is disposed or garbage-collected the file is deleted (if possible). You could obviously use this as tightly-scoped as you like, or in a collection somewhere.

link|flag
It's not often you see a proper place to use an empty catch block. – Robert Rossney Dec 31 '08 at 20:01
I'll probably implement a variant of this. It's straight forward and easy to understand. – Nifle Jan 2 '09 at 8:44
vote up 0 vote down

You could launch a thread on startup that will delete files that exist when they "shouldn't" to recover from your crash.

link|flag
vote up 1 vote down

You could P/Invoke CreateFile and pass the FILE_FLAG_DELETE_ON_CLOSE flag. This tells Windows to delete the file once all handles are closed. See also: Win32 CreateFile docs.

link|flag
vote up 0 vote down

Its nice to see that you want to be responsible, but if the files aren't huge (>50MB) you would be in line with everyone (MS included) in leaving them in the temp directory. Disk space is abundant.

As csl posted, the GetTempPath is the way to go. Users who are short on space will be able to run disk cleanup and your files (along with everyone else's) will be cleaned up.

link|flag
1  
Personally I think a temp file is a temp file, and should be destroyed as soon as it's no longer needed. I hate my disk being cluttered with all kinds of trash. Shameful that no-one (MS included) cares about my computer's state... – miies Dec 30 '08 at 13:17
Agreed, and RAII would solve that nicely. – csl Dec 30 '08 at 13:18
Understood, It's commendable to try, but my point is that if you cant get everything, its not going to be bad. – StingyJack Dec 30 '08 at 13:38
Agreed.. if for whatever reason you can't clean up all files, they'd better be in the temp directory then anywhere else. – miies Dec 31 '08 at 8:37
vote up 3 vote down

I'm not primarily a C# programmer, but in C++ I'd use RAII for this. There are some hints on using RAII-like behaviour in C# online, but most seem to use the finalizer — which is not deterministic.

I think there are some Windows SDK functions to create temporary files, but don't know if they are automatically deleted on program termination. There is the GetTempPath function, but files there are only deleted when you log out or restart, IIRC.

P.S. The C# destructor documentation says you can and should release resources there, which I find a bit odd. If so, you could simply delete the tempfile in the destructor, but again, this might not be completely deterministic.

link|flag
The destructor is commonly used to release handles and resources on a per class basis. I imagine that you could use it to delete files, but that should be really be handled by the application code that created them. – StingyJack Dec 30 '08 at 13:09
Noob question: Does it have to be deterministic? To my knowledge, deterministic means that you do not know exactly WHEN it will run, but normally you can be sure that it WILL run (unless you yank the power cord of course) - or am I wrong here? – Michael Stum Dec 30 '08 at 13:25

Your Answer

Get an OpenID
or

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