Phil Leggetter - Software Consultant

Phil Leggetter - Software Consultant RSS Feed

C# - Get Windows Temporary Directory

Once you know it you'll probably never forget it...but wait, this is the second time I've googled for this. I'd best post how you "get the Windows temporary directory using C#"!

C#:
  1. string tempPath =
  2.     System.IO.Path.GetTempPath();

,