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
*This post is locked for comments