Thanks in advance
Files
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Files
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
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