When I add a picture I want it to create a new random file name because if you add a picture with the same name it will just overwrite.
feedback
|
|
You could generate a Guid and use that for your file name. Although this would mean that the files are not human readable and have no information as to what the content is. | |||
|
feedback
|
|
As you want to save pictures, you could just use a GUID as the filename:
I always do it this way when I need another file extension than .tmp (which files get when you create them via GetTempFileName). | |||
|
feedback
|
|
The is a built-in method
If you want to use your extension (e.g.
| ||||
|
feedback
|
|
Name your image using a GUID For C# you can use: | |||
|
feedback
|
|
You could built it using the current time.
The above example will format the current time using year, month, day, hours, minutes, seconds, and fractions of a second. (The fraction of a second can be specified with fewer Advantages:
Disadvantages:
| |||||||||||||||||
feedback
|
|
Perhaps you are looking for | |||||||||||||
feedback
|
|
I would also go with the GUID solution. Here some code I would use regularly:
Would provide you with a fine, reusable solution. Put this into your "collection of my greatest moments" - classlibrary and you are good to go. | |||||||||
feedback
|
|
I would go with awe. Use the original filename + | ||||
|
feedback
|