WriteInteger - 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]

  

WriteInteger

  

write an integer to a file

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

WriteInteger(file, integer, opt1, opt2, ...)

Parameters

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

Description

• 

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.

Examples

FileToolsTextWriteIntegertestfile,1234

4

(1)

FileToolsTextWriteCharactertestfile, :

FileToolsTextWriteIntegertestfile,1213121

7

(2)

FileToolsTextClosetestfile:

FileToolsTextReadIntegertestfile

1234

(3)

FileToolsTextReadIntegertestfile

1213121

(4)

FileToolsRemovetestfile

FileToolsTextWriteIntegertestfile,1234,delim:

FileToolsTextWriteIntegertestfile,1213121,delim=::

FileToolsTextClosetestfile:

FileToolsTextReadCharactertestfile

(5)

FileToolsTextReadIntegertestfile

1234

(6)

FileToolsTextReadCharactertestfile

(7)

FileToolsTextReadCharactertestfile

:

(8)

FileToolsTextReadIntegertestfile

1213121

(9)

FileToolsTextReadCharactertestfile

:

(10)

FileToolsRemovetestfile

FileToolsTextWriteIntegertestfile,1,rightdelim=::

FileToolsTextWriteIntegertestfile,2:

FileToolsTextWriteIntegertestfile,3,leftdelim=::

FileToolsTextClosetestfile:

FileToolsTextReadIntegertestfile

1

(11)

FileToolsTextReadCharactertestfile

:

(12)

FileToolsTextReadIntegertestfile

2

(13)

FileToolsTextReadCharactertestfile

:

(14)

FileToolsTextReadIntegertestfile

3

(15)

FileToolsTextReadCharactertestfile

FileToolsRemovetestfile

See Also

file

FileTools[AtEndOfFile]

FileTools[Remove]

FileTools[Text]

FileTools[Text][Close]

FileTools[Text][Open]

FileTools[Text][ReadCharacter]

FileTools[Text][ReadInteger]

FileTools[Text][ReadNextInteger]

FileTools[Text][ReadString]

IO_errors