Path.GetTempFileName Method

Definition

Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.

public:
 static System::String ^ GetTempFileName();
public static string GetTempFileName ();
static member GetTempFileName : unit -> string
Public Shared Function GetTempFileName () As String

Returns

The full path of the temporary file.

Exceptions

An I/O error occurs, such as no unique temporary file name is available.

-or-

This method was unable to create a temporary file.

Remarks

This method creates a temporary file with a .tmp file extension and returns the path to it. The temporary file is created within the user's temporary folder, which is the path returned by the GetTempPath method.

On .NET 7 and earlier versions, when using this method on Windows, the GetTempFileName method raises an IOException if it's used to create more than 65535 files without deleting previous temporary files. This limitation does not exist on operating systems other than Windows. Starting in .NET 8, the limitation does not exist on any operating system.

The GetTempFileName method will raise an IOException if no unique temporary file name is available. To resolve this error, delete all unneeded temporary files.

For a list of common I/O tasks, see Common I/O Tasks.

Applies to

See also