DOM EXPORT TO FILE

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 2004


DOM EXPORT TO FILE (elementRef; filePath)

ParameterTypeDescription
elementRefStringRoot XML element reference
filePathTextFull access path of the file

Description

The DOM EXPORT TO FILE command allows you to store 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.

Example

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

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

See Also

DOM EXPORT TO VAR.

System Variables or 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 Handling

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.).


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next