The GetTempPath() method in C# displays temporary file names −
Path.GetTempPath();
Get the names in a variable and display −
string tempFile = Path.GetTempPath();
The following is the code −
Example
using System;
using System.IO;
class Demo {
static void Main() {
string tempFile = Path.GetTempPath();
Console.WriteLine(tempFile);
}
}Output
/tmp/