WriteLine - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


FileTools[Text]

  

WriteLine

  

write strings to a file or pipe

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

WriteLine(file, str1, str2, ...)

Parameters

file

-

file descriptor or filename

str1, str2, ...

-

(optional) one or more Maple strings to be printed

Description

• 

The WriteLine(file) command writes the specified Maple expressions to the specified file, separated by newlines, and followed by a newline.

• 

The WriteLine function returns a count of the number of characters written.  Due to different character encodings, this number may differ from the number of bytes written to disk.

• 

If file is default, the output is written to the current output stream.

• 

If file is terminal, the line is written to the top level output stream. The top level output stream is the current output stream that was in effect when Maple was started.

• 

If file is the name of an open file, the file descriptor is obtained automatically.  If file is the name of a file that is not open, it is opened automatically.  If file is an invalid descriptor, an error is raised.

• 

If no strings are specified, only a newline is printed.

Examples

FileToolsTextWriteLinetestfile,This is a test

15

(1)

FileToolsTextWriteLinetestfile,This is also a test

20

(2)

FileToolsTextClosetestfile

FileToolsTextReadLinetestfile

This is a test

(3)

FileToolsTextReadLinetestfile

This is also a test

(4)

FileToolsRemovetestfile

See Also

file

FileTools[Remove]

FileTools[Text]

FileTools[Text][Close]

FileTools[Text][Open]

FileTools[Text][ReadLine]

IO_errors