Go to: Synopsis. Return value. Related. MEL examples.
fprint
<int> <int | float | string | vector>
fprint is undoable, queryable, and editable.
This command is functionally equivalent to the print function. The difference being the mandatory file identifier argument.// Print a string into a file // $exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" ); $fileId=`fopen $exampleFileName "w"`; fprint $fileId "Hello there\n"; fclose $fileId;