FileOutputStream_newFromName

Creates a FileOutputStream object from a file name.

Syntax

C++

 #include "InterfaceFactory.h"
 
 DIRXML_EXPORT 
 OutputStream * IFAPI FileOutputStream_newFromName ( 
    const char   *filename);
 

Parameters

filename
(IN) Points to the file to create into an output stream object.

Remarks

This method should be used with XmlDocument::writeDocument or XmlDocument::getXmlWriter method from NativeIngerface.h.

The passed file name will be opened using fopen(), mode "wb+".