<PackageReference Include="Relativity.Server.Import.SDK" Version="24000.1.1" />

TempFileBuilder

public static class TempFileBuilder
Provides static methods to build temporary files that are easier to debug and sort than GetTempFileName and employ unique file names to avoid collisions.
public static string GetTempFileName()

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

public static string GetTempFileName(string fileNameSuffix)

Gets a uniquely named with a user-defined suffix, zero-byte temporary file on disk and returns the full path of that file.

public static string TemporaryFileNameWithoutCreatingEmptyFile(string fileNameSuffix)

Gets a uniquely named with a user-defined suffix, zero-byte temporary file on disk and returns the full path of that file.