|
|
|
|
|
HFileExist (Function) In french: HFichierExiste // Check whether the "Customer" data file exists IF HFileExist(Customer) = True THEN // Processes ... END // Check whether a Client/Server data file exists IF HFileExist(MyConnection, "MyFile.FIC") = True THEN // Processes ... END Syntax
Checking the existence of a data file, query or view Hide the details
<Result> = HFileExist([<Element>])
<Result>: Boolean - True if the physical file exists,
- False otherwise.
<Element>: Optional character string Name of the element to be used: - Name of data file.
- Name of view or query.
If this name is not specified, HFileExist will use the last data file, query or view used by the last HFSQL management function (function starting with "H"). Remarks - HFileExist can be used whether the file is open or closed.
- HFileExist does not open the data file if it is closed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|