GetTempFile
|
Creates a uniquely named, zero-byte temporary file on the system's default temporary folder
and returns the file.
|
GetTempFile(DirectoryInfo)
|
Creates a uniquely named, zero-byte temporary file on the specified folder
and returns the file.
|
GetTempFile(EnvironmentSpecialFolder)
|
Creates a uniquely named, zero-byte temporary file on the specified folder
and returns the file.
|
GetTempFile(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.
|
GetTempFile(DirectoryInfo, String)
|
Creates a uniquely named, zero-byte temporary file on the specified folder with the specified file extension
and returns the file.
|
GetTempFile(EnvironmentSpecialFolder, String)
|
Creates a uniquely named, zero-byte temporary file on the specified folder with the specified file extension
and returns the file.
|
GetTempFile(String, String)
|
Creates a uniquely named, zero-byte temporary file on the specified folder with the specified file extension
and returns the file.
|