800xA Batch function wizard
Hello,
On the Batch function wizard, you could choose the fopen function and the fclose function.
Do you have an example for using these functions and why read the file and how to read the data ?
Thanks
Laurent
Answers
syntax is:
fopen("\\\\BatchServerName\\d$/toto.txt","r")
for the mode, you can use:
"r" open text file for reading
"r+" open for reading and writing
"w" create text file for writing
"w+" open for reading and writing
Add new comment