|
|
|
|
|
<Connection variable>.FileExist (Function) In french: <Variable Connexion>.FichierExiste // Describe the connection MyConnection is Connection  // Check whether a Client/Server data file exists IF MyConnection.FileExist("MyFile.FIC") = True THEN // Processes ... END
Checking the existence of a data file in HFSQL Client/Server Hide the details
<Result> = <Connection>.FileExist(<Physical file>)
<Result>: Boolean - True if the physical data file exists on the server,
- False otherwise.
<Connection>: Connection variable Name of the Connection variable that describes the connection associated with the data file. <Physical file>: Character string Physical name of the searched data file. The file extension must be specified ("Customer.fic" for example). Remarks - <Connection variable>.FileExist can be used whether the file is open or closed.
- <Connection variable>.FileExist does not open the data file if it is closed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|