Post
by Klaus » Mon Mar 14, 2016 1:43 pm
Shalom Itay,
read the file(s) into a variable and do what must be done:
...
## Simple text file:
put url("file" & "path/to/file.txt") into tTextVariable
repeat for each line tLine in tTextVariable
## Do something with tLine...
...
## Binary file:
put url("binfile" & "path/to/binaryfile.bin") into tBinaryVariable
## No idea how to parse binary stuff, sorry...
...
Best
Klaus