Hello:
I have a utility command that writes out a list of the 3 or so files it created, ie:
Console.WriteLine("\t{0} \tUpdated @ {1}", file, lastWriteTime);
The main reason I do this is so I can find the files easily after the routine runs (the location may vary). Ideally, I'd be able to hotlink and open the file using ctrl + click, just like some other 3rd paty utilities I use do.
Does anyone know how to do that?
Cheers