Home
Manage Your Code
Snippet: Temp Files & Folders (C#)
Title: Temp Files & Folders Language: C#
Description: Even need the location of the system temp folder or need to create a temp file on the fly? Views: 84
Author: digital Moto Date Added: 7/14/2008
Copy Code  
1// the system's temp files/folder

2string tempPath = System.IO.Path.GetTempPath();
3string tempFile = System.IO.Path.GetTempFileName();
4
5      
Usage
string tempPath = System.IO.Path.GetTempPath();
string tempFile = System.IO.Path.GetTempFileName();