I have implemented an algorithm that will generate unique names for files that will save on hard drive. Im appending DateTime,Hours,Minutes,Second and Milliseconds but still it generates duplicate name of files because im uploading multiple files at a time. What is the best solution to generate unique names for files to be stored on hard drive so no 2 files are same?
|
If readability doesn't matter, use GUIDs. E.g.
In my programs, I sometimes try e.g. 10 times to generate a readable name ("Image1.png".."Image10.png") and if that fails, I fall back to GUIDs. |
|||
|
|
|||||||||||||
|
|
|||||||||
|
|
If the readability of the file name isn't important, then the GUID, as suggested by many will do. However, I find that looking into a directory with 1000 GUID file names is very daunting to sort through. So I usually use a combination of a static string which gives the file name some context information, a timestamp, and GUID. For example:
This way, when I sort by filename, it will automatically group the files by the context string and sort by timestamp. Note that the filename limit in windows is 255 characters. |
|||||||||
|
|
Use the built-in method for this: http://msdn.microsoft.com/en-us/library/w0azsy9b(VS.85).aspx |
|||
|
|
|
|||||||
|
|
Do you need the date time stamp in the filename? You could make the filename a GUID. |
|||||||
|
|
How about using |
|||
|
|
|
Here's an algorithm that returns a unique readable filename based on the original supplied. If the original file exists, it incrementally tries to append an index to the filename until it finds one that doesn't exist. It uses a HashSet to check for file existence so it's pretty quick (a few hundred filenames per second) and it's thread safe. For example, if you pass it
etc. You can specify the maximum attempts or just leave it at the default. Here's a complete example:
|
||||
|
|
|
If you would like to have the datetime,hours,minutes etc..you can use a static variable. Append the value of this variable to the filename. You can start the counter with 0 and increment when you have created a file. This way the filename will surely be unique since you have seconds also in the file. |
|||
|
|
|
I usually do something along these lines:
Here's a sample class:
You might want to tweak the algorithm (always use all the possible components to the file name for instance). Depends on the context -- If I was creating log files for instance, that I might want to rotate out of existence, you'd want them all to share the same pattern to the name. The code isn't perfect (no checks on the data passed in for instance). And the algorithm's not perfect (if you fill up the hard drive or encounter permissions, actual I/O errors or other file system errors, for instance, this will hang, as it stands, in an infinite loop). |
|||
|
|
|
I ends up concatenating GUID with Day Month Year Second Millisecond string and i think this solution is quite good in my scenario |
|||
|
|
|
you can use Random.Next() also to generate a random number. you can see the MSDN link: http://msdn.microsoft.com/en-us/library/9b3ta19y.aspx |
|||
|
|