API Reference
Class
TempPath
Provides methods for working with temporary file paths.
Inheritance
- Object
- TempPath
Methods
Get 2 overloads
public static String Get(String extension = ".html") #Returns:
StringGets a temporary file path with the specified extension.
Parameters
- extension System.String = ".html"
- The file extension (including the dot).
Returns
A unique temporary file path.
public static String Get(String prefix, String extension) #Returns:
StringGets a temporary file path with a specific name pattern.
Parameters
- prefix System.String
- The prefix for the file name.
- extension System.String
- The file extension (including the dot).
Returns
A unique temporary file path.