XmlCreateFile: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 10: Line 10:


===Required Arguments===  
===Required Arguments===  
*'''filename:''' the name of the XML file you wish to create.
*'''filename:''' the [[filepath]] of the XML file you wish to create.
*'''rootNodeName:''' the name of the root node in the XML document.
*'''rootNodeName:''' the name of the root node in the XML document.



Revision as of 21:22, 16 June 2009

This function creates a new XML document, which can later be saved to a file by using xmlSaveFile. This function will overwrite the file specified if it already exists.

Syntax

Click to collapse [-]
Server
xmlnode xmlCreateFile ( string filename, string rootNodeName, [ resource inResource = getThisResource() ] )

Required Arguments

  • filename: the filepath of the XML file you wish to create.
  • rootNodeName: the name of the root node in the XML document.

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • inResource: the resource whose directory will be used as the root for the filename specified. Note that if a different resource than default is being accessed, the caller resource needs access to general.ModifyOtherObjects in the ACL.
Click to collapse [-]
Client
xmlnode xmlCreateFile ( string filename, string rootNodeName )

Required Arguments

  • filename: The name of the XML file you wish to create. This is a path relative to the clientside root folder of the resource found in your MTA San Andreas installation directory.
  • rootNodeName: The name of the root node in the XML document.

Returns

Returns the root xmlnode object of the new XML file if successful, or false otherwise.

See Also