FileIO
Views (88)
FileIO is commonly used to export data to a TXT file. There are three different
methods to write text to an FileIO object:
• FileIO.write(str) - writes a string.
• FileIO.writeExp(container) - writes the contents of a container.
Elements are separated by character defined in
FileIO.outFieldDelimiter().
• FileIO.writeChar(int) - writes a unicode character represented by
an integer.
The following is sample code which writes a simple string to a text file:
Best Regards,
Hossein Karimi
methods to write text to an FileIO object:
• FileIO.write(str) - writes a string.
• FileIO.writeExp(container) - writes the contents of a container.
Elements are separated by character defined in
FileIO.outFieldDelimiter().
• FileIO.writeChar(int) - writes a unicode character represented by
an integer.
The following is sample code which writes a simple string to a text file:
1 | FileName fileName = 'c:\\test.txt'; |
Best Regards,
Hossein Karimi

Like
Report
*This post is locked for comments