Skip to main content
Version: Next

DOM EXPORT TO FILE

DOM EXPORT TO FILE ( elementRef ; filePath )

ParameterTypeDescription
elementRefString🡒Root XML element reference
filePathText🡒Full access path of the file

Description

The DOM EXPORT TO FILE command stores an XML tree in a file on disk.

Pass the root element reference to export in the elementRef parameter.

Pass the full access path to use or create of the export file in filePath. If the file does not already exist, it is created.

If you only pass a file name (without an access path), a search for the file will take place or it will be created next to the structure file.

If you pass an empty string (""), a standard open file and new file dialog box appears.

About end-of-line characters and BOM management

In XML, line breaks are not significant regardless of whether they are within or between XML elements. Internally, XML uses standard LF characters as line separators. During import and export operations, line break characters can be converted. During an import, the XML parser replaces CRLF characters (standard line breaks under Windows) with LF characters. During export, LF characters are replaced by CRLF characters on Windows (no replacement on macOS).

Note: If you want to keep carriage returns, you must include them in an XML CDATA element so that they will not be processed by the XML parser. Instead of CRLF characters, you can also use "
" characters, which are explicit carriage returns that will not be processed by the parser.

By default, XML files are written without BOM (Byte order mask).

You can control the XML line ending and BOM management using the XML SET OPTIONS command.

Compatibility Note: In databases/projects created with 4D versions up to v19.x, by default 4D uses CR as end-of-line characters on macOS and a BOM. To enable the new default settings, check compatibility settings (see Compatibility page) or use the XML SET OPTIONS command.

Example

This example stores the tree vElemRef in the file MyDoc.xml:

 DOM EXPORT TO FILE(vElemRef;"C:\\folder\MyDoc.xml")

System variables and sets

If the command has been executed correctly, the system variable OK is set to 1. Otherwise, it is set to 0 and an error is generated.

Error management

An error is generated when:

  • The element reference is invalid,
  • The specified access path is invalid,
  • The storage volume returns an error (insufficient disk space, etc.).

See also

DOM EXPORT TO VAR
SVG EXPORT TO PICTURE