GetTempFileName
|
Creates a uniquely named, zero-byte temporary file on the system's default temporary folder
and returns the file path.
|
GetTempFileName(DirectoryInfo)
|
Creates a uniquely named, zero-byte temporary file on the specified folder
and returns the file path.
|
GetTempFileName(EnvironmentSpecialFolder)
|
Creates a uniquely named, zero-byte temporary file on the specified folder
and returns the file path.
|
GetTempFileName(String)
|
Creates a uniquely named, zero-byte temporary file on the system's default temporary folder with the specified file extension
and returns the file path.
|
GetTempFileName(DirectoryInfo, String)
|
Creates a uniquely named, zero-byte temporary file on the specified folder with the specified file extension
and returns the file path.
|
GetTempFileName(EnvironmentSpecialFolder, String)
|
Creates a uniquely named, zero-byte temporary file on the specified folder with the specified file extension
and returns the file path.
|
GetTempFileName(String, String)
|
Creates a uniquely named, zero-byte temporary file on the specified folder with the specified file extension
and returns the file path.
|