FileTools[Text]
ReadCharacter
read a single character from a file
Calling Sequence
Parameters
Description
Examples
ReadCharacter(file)
file
-
file descriptor or filename
The ReadCharacter(file) command reads a single character from file. The character is returned as a string of length 1.
If file is the name of a file that has not been opened, Maple attempts to open the file before reading the character.
An error is raised if file is not a valid descriptor or if it is the name of a file that does not exists.
If the end of the file has been reached, ReadCharacter returns NULL.
FileToolsTextWriteString⁡file,123
3
FileToolsTextClose⁡file:
FileToolsTextReadCharacter⁡file
1
2
See Also
FileTools[AtEndOfFile]
FileTools[Text][Close]
FileTools[Text][Open]
FileTools[Text][ReadString]
FileTools[Text][WriteCharacter]
FileTools[Text][WriteString]
IO_errors
Download Help Document