Tuesday, October 13, 2009

How to get the system temporary directory


using System.IO;
 
...
 
String temporaryDirectoryPath = Path.GetTempPath();
DirectoryInfo temporaryDirectoryInfo = new DirectoryInfo(temporaryDirectoryPath);

No comments:

Post a Comment