How you can read a file (text or binary) from a batch file? There is a way to read it in a binary mode or text mode?
|
feedback
|
|
You can use the for command:
Type
at the command prompt. Also, you can parse ini files! | |||
|
feedback
|
|
Under NT-style cmd.exe, you can loop through the lines of a text file with
Type "help for" on the command prompt for more information. (don't know if that works in whatever "DOS" you are using) | |||
|
feedback
|
|
The FOR-LOOP generally works, but there are some issues. The FOR doesn't accept empty lines and lines with more than ~8190 are problematic. The expansion works only reliable, if the delayed expansion is disabled. Detection of CR-LF versus single LF seems also a little bit complicated. Binary reading seems therefore nearly impossible. The problem with empty lines can be solved with a trick. Prefix each line with a line number, using the findstr command, and after reading, remove the prefix.
Toggling between enable and disabled delayed expansion is neccessary for the safe working with strings, like | ||||
|
feedback
|