←Select platform

GetTemporaryFileName Method

Summary

Allows the user to create a temporary filename in the LEADTOOLS temporary folder.

Syntax
C#
C++/CLI
Java
Python
public static string GetTemporaryFileName() 
public static java.lang.String getTemporaryFileName(); 
public:  
   static String^ GetTemporaryFileName() 
def GetTemporaryFileName(self): 

Return Value

A temporary filename for the file in the LEADTOOLS temporary folder.

Remarks

Just like Path.GetTempFileName, this method will also create a file with that name. The user should delete the file using RasterDefaults.DeleteTemporaryFile when they are done with it.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
 
 
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. 
	RasterDefaults.DeleteTemporaryFile(myTempFile); /* Delete tempFile when you are done with it */ 
} 
Requirements

Target Platforms

Help Version 22.0.2023.5.16
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.