Hello, I am writing files to my harddrive,The filename is build like this:
String.Format("{0:yyyy-MM-dd_hh-mm-ss}.txt", DateTime.Now)
So the filename is "2010-09-20_09-47-04.txt" for example. Now I want to show those filenames in a dropdown, but with another format. The format should be dd.MM.yyyy HH:mm:ss. How can I do that, or is there a better approach?
Thanks :)