Go to: Synopsis. Return value. Related. MEL examples.

Synopsis

fprint int int|float|string|vector

fprint is NOT undoable, NOT queryable, and NOT editable.

This command is functionally equivalent to the print function. The difference being the mandatory file identifier argument.

Return value

None

Related

fclose, feof, fflush, fgetline, fgetword, fopen, fread, frewind, fwrite, pclose, popen, print

MEL examples

// Print a string into a file
//
$exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" );
$fileId=`fopen $exampleFileName "w"`;
fprint $fileId "Hello there\n";
fclose $fileId;