Allows the user to create a temporary filename in the LEADTOOLS temporary folder.
public static string GetTemporaryFileName()
Public Shared Function GetTemporaryFileName() As String
public:
static String^ GetTemporaryFileName()
A temporary filename for the file in the LEADTOOLS temporary folder.
Just like Path.GetTempFileName
, this method will also create a file with that name. The user should delete the file when they are done with it.
using Leadtools;
using Leadtools.Codecs;
using LeadtoolsExamples.Common;
public static void GetTemporaryFileNameTest()
{
RasterDefaults.TemporaryDirectory = @"c:\temp\MyTempFolder";
string myTempFile = RasterDefaults.GetTemporaryFileName();
// Use the temp file indicated by myTempFile. The file should be in c:\temp\MyTempFolder instead of the Windows TEMP Folder.
// Delete the file when you're done with it.
File.Delete(myTempFile);
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing
Public Shared Sub GetTemporaryFileNameTest()
RasterDefaults.TemporaryDirectory = "c:\\temp\\MyTempFolder"
Dim myTempFile As String = RasterDefaults.GetTemporaryFileName()
' Use the temp file indicated by myTempFile. The file should be in c:\temp\MyTempFolder instead of the Windows TEMP Folder.
' Delete the file when you're done with it.
File.Delete(myTempFile)
End Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document