FileTools[Text]
WriteString
write a string to a file
WriteFile
write a string to a file and close the file
Calling Sequence
Parameters
Description
Examples
Compatibility
WriteString(file, str)
WriteFile(file, str)
file
-
file descriptor or filename
str
Maple string to be printed
The WriteString(file, str) and WriteFile(file, str) commands write the specified Maple string to the specified file.
Both commands return 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.
WriteString does not close the file after writing the specified string. To ensure all data is appended to file it is necessary to explicitly close the file after WriteString or other FileTools[Text] commands are performed.
WriteFile behaves identically to WriteString, except that if the specified file was not already open prior to WriteFile being called, then WriteFile will close it before it returns. WriteFile therefore offers a convenient syntax to write a string to disk with a single command, without the need to open or close the file explicitly.
FileToolsTextWriteString⁡testfile,This\nis\na\ntest
14
FileToolsTextClose⁡testfile
FileToolsTextReadLine⁡testfile
This
is
a
test
FileToolsRemove⁡testfile
FileToolsTextWriteFile⁡testfile,This is another test.
21
The FileTools[Text][WriteFile] command was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
FileTools[Remove]
FileTools[Text][Close]
FileTools[Text][Open]
FileTools[Text][ReadLine]
FileTools[Text][ReadString]
IO_errors
Download Help Document