DateTime.ToString() format that can be used in a filename or extension?
You can use this:
DateTime.Now.ToString("yyyy-dd-M--HH-mm-ss");
I have a similar situation but I want a consistent way to be able to use DateTime.Parse
from the filename as well, so I went with
DateTime.Now.ToString("s").Replace(":", ".") // <-- 2016-10-25T16.50.35
When I want to parse, I can simply reverse the Replace call. This way I don't have to type in any yymmdd stuff or guess what formats DateTime.Parse allows.
I would use the ISO 8601 format, without separators:
DateTime.Now.ToString("yyyyMMddTHHmmss")
Personally I like it this way:
DateTime.Now.ToString("yyyy-MM-dd HH.mm.ss")
Because it distinguishes between the date and the time.