FileTools[Text]
WriteInteger
write an integer to a file
Calling Sequence
Parameters
Description
Examples
WriteInteger(file, integer, opt1, opt2, ...)
file
-
file descriptor or filename
integer
integer to write to the file
opt1, opt2, ...
(optional) argument of the form, name or name=string where name is one of delim, leftdelim, or rightdelim
The WriteInteger(file, integer) command writes integer to the file specified by file.
The WriteInteger function can place delimiters around integer while writing. Without delimiters the characters of two consecutive calls to WriteInteger are continuous in the file and it is impossible to determine the correct location to separate the two integers. Delimiters can be added around the integer by specifying, delim, leftdelim, or rightdelim.
The delim option adds delimiters on both sides of the integer. The delimiter can be specified by passing delim=string. If a string is not specified, then the delimiter is a single space.
The leftdelim option adds a delimiter before the integer. The rightdelim option adds a delimiter after the integer. The delimiter can be specified by passing leftdelim=string or rightdelim=string. If a string is not specified then the delimiter is a single space. The leftdelim and rightdelim options can be used together to specify asymmetric delimiters. If used in conjunction with delim, the delimiters specified by leftdelim or rightdelim take precedence.
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.
FileToolsTextWriteInteger⁡testfile,1234
4
FileToolsTextWriteCharacter⁡testfile, :
FileToolsTextWriteInteger⁡testfile,1213121
7
FileToolsTextClose⁡testfile:
FileToolsTextReadInteger⁡testfile
1234
1213121
FileToolsRemove⁡testfile
FileToolsTextWriteInteger⁡testfile,1234,delim:
FileToolsTextWriteInteger⁡testfile,1213121,delim=::
FileToolsTextReadCharacter⁡testfile
:
FileToolsTextWriteInteger⁡testfile,1,rightdelim=::
FileToolsTextWriteInteger⁡testfile,2:
FileToolsTextWriteInteger⁡testfile,3,leftdelim=::
1
2
3
See Also
FileTools[AtEndOfFile]
FileTools[Remove]
FileTools[Text][Close]
FileTools[Text][Open]
FileTools[Text][ReadCharacter]
FileTools[Text][ReadInteger]
FileTools[Text][ReadNextInteger]
FileTools[Text][ReadString]
IO_errors
Download Help Document