I have implemented an algorithm that will generate unique names for files that will save on hard drive. I\'m appending DateTime: Hours,Minutes,Second an
DateTime
Use
Path.GetTempFileName()
or use new GUID().
Path.GetTempFilename() on MSDN.