XmlCopyFile

From Multi Theft Auto: Wiki
Revision as of 15:51, 20 October 2007 by ChrML (talk | contribs)
Jump to navigation Jump to search

This function copies all contents of a certain node in a XML document to a new document file, so the copied node becomes the new file's root node.

Syntax

Server:

xmlnode xmlCopyFile ( xmlnode nodeToCopy, string newFilename, resource root = getThisResource () )

Client:

xmlnode xmlCopyFile ( xmlnode nodeToCopy, string newFilename )

Required Arguments

  • nodeToCopy: the xmlnode that is to be copied to a new document.
  • newFilename: the filename for the new XML document.

Returns

Returns a xmlnode if the node was successfully copied, false if invalid arguments were passed.

Example

See Also