Skip to main content
Version: 20 R7 BETA

File

History
ReleaseChanges
19 R4New HTTP Client log file constant
17 R5Added

File ( path : Text { ; pathType : Integer }{ ; * } ) : 4D.File
File ( fileConstant : Integer { ; * } ) : 4D.File

ParameterTypeDescription
pathTextFile path
fileConstantInteger4D file constant
pathTypeIntegerfk posix path (default) or fk platform path
*operator* to return file of host database
Result4D.FileNew file object

Description

The File command creates and returns a new object of the 4D.File type. The command accepts two syntaxes:

File ( path { ; pathType } { ; * })

In the path parameter, pass a file path string. You can use a custom string or a filesystem (e.g., "/DATA/myfile.txt").

Only absolute pathnames are supported with the File command.

By default, 4D expects a path expressed with the POSIX syntax. If you work with platform pathnames (Windows or macOS), you must declare it using the pathType parameter. The following constants are available:

ConstantValueComment
fk platform path1Path expressed with a platform-specific syntax (mandatory in case of platform pathname)
fk posix path0Path expressed with POSIX syntax (default)

File ( fileConstant { ; * } )

In the fileConstant parameter, pass a 4D built-in or system file, using one of the following constants:

ConstantValueComment
Backup history file19Backup history file (see Configuration and trace files). Stored in the backup destination folder.
Backup log file13Current backup journal file. Stored in the application Logs folder.
Backup settings file1Default backup.4DSettings file (xml format), stored in the Settings folder of the project
Backup settings file for data17backup.4DSettings file (xml format) for the data file, stored in the Settings folder of the data folder
Build application log file14Current log file in xml format of the application builder. Stored in the Logs folder.
Build application settings file20Default settings file of the application builder ("buildApp.4DSettings"). Stored in the Settings folder of the project.
Compacting log file6Log file of the most recent compacting done with the Compact data file command or the Maintenance and security center. Stored in the Logs folder.
Current backup settings file18backup.4DSettings file currently used by the application. It can be the backup settings file (default) or a custom user backup settings file defined for the data file
Debug log file12Log file created by the SET DATABASE PARAMETER(Debug log recording) command. Stored in the Logs folder.
Diagnostic log file11Log file created by the SET DATABASE PARAMETER(Diagnostic log recording) command. Stored in the Logs folder.
Directory file16directory.json file, containing the description of users and groups (if any) for the project application. It can be located either in the user settings folder (default, global to the project), or in the data settings folder (specific to a data file).
HTTP Client log file24Log file created by the HTTP SET OPTION(HTTP client log) command. Stored in the Logs folder.
HTTP debug log file9Log file created by the WEB SET OPTION(Web debug log) command. Stored in the Logs folder.
HTTP log file8Log file created by the WEB SET OPTION(Web log recording) command. Stored in Logs folder.
IMAP Log file23Log file created by the SET DATABASE PARAMETER(IMAP Log) command. Stored in the Logs folder.
Last backup file2Last backup file, named \<applicationName>[bkpNum].4BK, stored at a custom location.
Last journal integration log file22Full pathname of the last journal integration log file (stored in the Logs folder of the restored application), if any. This file is created, in auto-repair mode, as soon as a log file integration occurred
Repair log file7Log file of database repairs made on the database in the Maintenance and Security Center (MSC). Stored in the Logs folder.
Request log file10Standard client/server request log file (excluding Web requests) created by the SET DATABASE PARAMETER(4D Server log recording) or SET DATABASE PARAMETER(Client log recording) commands. If executed on the server, the server log file is returned (stored in the Logs folder on the server). If executed on the client, the client log file is returned (stored in the client local Logs folder).
SMTP log file15Log file created by the SET DATABASE PARAMETER(SMTP Log) command. Stored in the Logs folder.
User settings file3settings.4DSettings file for all data files, stored in Preferences folder next to structure file if enabled.
User settings file for data4settings.4DSettings file for current data file, stored in Preferences folder next to the data file.
Verification log file5Log files created by the VERIFY CURRENT DATA FILE and VERIFY DATA FILE commands or the Maintenance and Security Center (MSC). Stored in the Logs folder.

If the target fileConstant does not exist, a null object is returned. No errors are raised.

If the command is called from a component, pass the optional * parameter to get the path of the host database. Otherwise, if you omit the * parameter, a null object is always returned.

See also

Folder
Get 4D file
Object to path
Path to object