The
LogFile property is used to determine if a data file is a log file.
Reminder: A log file is used store the different operations performed on a logged file. A log file is created if log options have been defined for one or more data files of the analysis.
EXTERN SupplierJNL
HDeclareExternal("C:\WINDEV\Examples\SalesMgt\SupplierJNL.fic", "SupplierJNL")
IF SupplierJNL.LogFile = True THEN
Info("You are handling a log file")
END
Syntax
<Result> = <Data file>.LogFile
<Result>: Boolean
- True if the file is a log file,
- False otherwise.
Remark: The data files described in the analysis are not "log" files.
<Data file>: Character string
Logical name of the data file used. Can correspond to a name of file alias declared by HDeclareExternal.