ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / External file functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the name of a unique temporary file.
Remark: fTempFile does not create the corresponding temporary file. To create and open a temporary file, use fOpenTempFile.
WINDEVJavaUser code (UMC)
// Retrieve the name of a unique temporary file
ResUniqueTempFile = fTempFile("ABC", "C:\MyDirectories")
// fTempFile returns "C:\MyDirectories\ABCxxx.tmp"
Syntax
<Result> = fTempFile([<Prefix of temporary file> [, <Directory of temporary file>]])
<Result>: Character string
  • Full path of a unique temporary file.
  • Empty string ("") if an error occurred (unable to get the temporary path of system). To get more details on the error, use ErrorInfo with the errMessage constant.
<Prefix of temporary file>: Optional character string
Prefix (3 letters) for the name of the temporary file. This parameter is used to prefix the name of the temporary file. Only the first three letters will be taken into account.
WindowsLinux This parameter can be in Ansi or Unicode format.
<Directory of temporary file>: Optional character string
Full or relative directory of the temporary file. A UNC path can be used. This directory name may (or may not) end with the "\" character. This directory must exist. Otherwise, a WLanguage error will occur.
If this parameter is not specified, the default directory will be:
  • the temporary directory of Windows (if this directory exists on the current computer),
  • the current directory (if the temporary directory of Windows does not exist on the current computer).
WindowsLinux This parameter can be in Ansi or Unicode format.
Remarks
fTempFile is used to find out the name of a unique temporary file. This function cannot be used to create the corresponding temporary file. To do so, use fCreate or fOpenTempFile.
Caution: For security reasons, fTempFile deletes the temporary file if it already exists. If the temporary file is used by another process, a non-fatal error will occur.
Component: wd290std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 08/22/2022

Send a report | Local help