Writers typically set the ErrorCode on error. Check the value returned by GetErrorCode() for errors and details about the errors.<br><br>Utkarsh<br><br><div class="gmail_quote">On Mon, May 25, 2009 at 10:01 AM, Mike Taverne <span dir="ltr">&lt;<a href="mailto:mtaverne@engits.com">mtaverne@engits.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br>
<br>
I&#39;m using vtkXMLUnstructuredGridWriter and noticed that when I call the &quot;Write&quot; method, it always returns 1, even if writing to the file failed because of permission problems or a non-existent path.<br>
An error code does show up in the terminal, but how can I catch it in my code?<br>
<br>
Here&#39;s the Write method, which seems to only return 0 when no input is provided:<br>
================<br>
int vtkXMLWriter::Write()<br>
{<br>
  // Make sure we have input.<br>
  if (this-&gt;GetNumberOfInputConnections(0) &lt; 1)<br>
    {<br>
    vtkErrorMacro(&quot;No input provided!&quot;);<br>
    return 0;<br>
    }<br>
<br>
  // always write even if the data hasn&#39;t changed<br>
  this-&gt;Modified();<br>
<br>
  this-&gt;Update();<br>
  return 1;<br>
<br>
}<br>
<br>
================<br>
<br>
<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br>