vote up 6 vote down star
2

I need to generate a unique temporary file with a .csv extension.

What I do right now is

   string filename = System.IO.Path.GetTempFileName().Replace(".tmp", ".csv");

However, this doesn't guarantee that my .csv file will be unique.

I know the chances I ever got a collision are very low (especially if you consider that I don't delete the .tmp files), but this code doesn't looks good to me.

Of course I could manually generate random file names until I eventually find a unique one (which shouldn't be a problem), but I'm curious to know if others have found a nice way to deal with this problem.

flag

49% accept rate

6 Answers

vote up 15 vote down check

Guaranteed to be (statistically) unique:

string fileName = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".csv";

(To quote from the wiki article on the probabilty of a collision:

...one's annual risk of being hit by a meteorite is estimated to be one chance in 17 billion [19], that means the probability is about 0.00000000006 (6 × 10−11), equivalent to the odds of creating a few tens of trillions of UUIDs in a year and having one duplicate. In other words, only after generating 1 billion UUIDs every second for the next 100 years, the probability of creating just one duplicate would be about 50%. The probability of one duplicate would be about 50% if every person on earth owns 600 million UUIDs

EDIT: Please also see JaredPar's comments.

link|flag
But not guaranteed to be in a writable location – JaredPar Feb 24 at 12:35
2  
System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".csv" will work. @Mitch : could you please update your answer before I mark it as accepted? thanks. – Brann Feb 24 at 12:38
And they are not guaranteed to be unique at all, just statistically unlikely. – paxdiablo Feb 24 at 12:39
@Brann: I did it for him :) – Gerrie Schenck Feb 24 at 12:39
@Pax: you have more chnace of winning the lottery 1000 times in a row than generating two idebtical guids. That's unique enough I guess... – Mitch Wheat Feb 24 at 12:41
show 13 more comments
vote up 3 vote down

You can also alternatively use System.CodeDom.Compiler.TempFileCollection.

string tempDirectory = @"c:\\temp";
TempFileCollection coll = new TempFileCollection(tempDirectory, true);
string filename = coll.AddExtension("txt", true);
File.WriteAllText(Path.Combine(tempDirectory,filename),"Hello World");

Here I used a txt extension but you can specify whatever you want. I also set the keep flag to true so that the temp file is kept around after use. Unfortunately, TempFileCollection creates one random file per extension. If you need more temp files, you can create multiple instances of TempFileCollection.

link|flag
vote up 1 vote down

You can also do the following

string filename = System.IO.Path.ChangeExtension(System.IO.Path.GetTempFileName(), ".csv");

and this also works as expected

string filename = System.IO.Path.ChangeExtension(System.IO.Path.GetTempPath() + Guid.NewGuid().ToString(), ".csv");
link|flag
this will fail if there is a file temp.csv and you create temp.tmp and then change the extension to csv – David May 26 at 13:46
No it won't...GetTempFileName() creates a unique filename...upto some limit of 32K at which point you need to delete some files but I think my solution is correct. It's wrong if I were to pass a file path into ChangeExtension that isn't guaranteed to be unique, but that's not what my solution does. – Michael Prewecki May 27 at 4:23
2  
GetTempFileName guarantees that the path it returns will be unique. Not that the path it returns + ".csv" will be unique. Changing the extension in this way could fail as David said. – Marcus Griep Jul 14 at 2:10
vote up 0 vote down

EDIT: This doesn't work. This returns a TempFileName with a different prefix, (i.e yourprefix23984.tmp), not a different extension. Sorry.


You can also do what GetTempFile does:

[DllImport("kernel32.dll", CharSet=CharSet.Auto, SetLastError=true)]
private static extern uint GetTempFileName(string tmpPath, string prefix, uint uniqueIdOrZero, StringBuilder tmpFileName);

public static string GetTempFileName(string prefix)
{
    string tempPath = GetTempPath();
    new FileIOPermission(FileIOPermissionAccess.Write, tempPath).Demand();
    StringBuilder tmpFileName = new StringBuilder(260);
    if (GetTempFileName(tempPath, prefix, 0, tmpFileName) == 0)
    {
        throw SomeKindOfException;
    }
    return tmpFileName.ToString();
}

This is reflected from GetTempFileName. I only changed "tmp" to a parameter named "extension". This has the benefit of being handled by the file system- it is guaranteed to be unique and to exist when it returns.

link|flag
This doesn't actually work because as you've named it, the second parameter to the WinApi call is actually the prefix not a suffix...so it's not an extension at all. – Michael Prewecki Feb 24 at 14:51
Whoops! I should have read the docs first – configurator Feb 24 at 14:56
vote up 0 vote down

Why not checking if the file exists?

string fileName;
do
{
    fileName = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".csv";
} while (System.IO.File.Exists(fileName));
link|flag
File.Exists tells you information about the past and is hence not reliable. In between the return of File.Exist and your code executing it's possible for the file to be created. – JaredPar Feb 24 at 13:42
and if you put this code in a lock statement? – Matías Feb 24 at 18:55
vote up 3 vote down

Try this function ...

public static string GetTempFilePathWithExtension(string extension) {
  var path = Path.GetTempPath();
  var fileName = Guid.NewGuid().ToString() + extension;
  return Path.Combine(path, fileName);
}

It will return a full path with the extension of your choice.

Note, it's not guaranteed to produce a unique file name since someone else could have technically already created that file. However the chances of someone guessing the next guid produced by your app and creating it is very very low. It's pretty safe to assume this will be unique.

link|flag

Your Answer

Get an OpenID
or

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