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
How about using Guid.NewGuid() to create a GUID and use that as the filename (or part of the filename together with your time stamp if you like).
Guid.NewGuid()