vote up 3 vote down star

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?

flag

4 Answers

vote up 4 vote down check

You can use the for command:

FOR /F "eol=; tokens=2,3* delims=, " %i in (myfile.txt) do @echo %i %j %k

Type

for /?

at the command prompt. Also, you can parse ini files!

link|flag
vote up 8 vote down

Under NT-style cmd.exe, you can loop through the lines of a text file with

FOR /F %i IN (file.txt) DO @echo %i

Type "help for" on the command prompt for more information. (don't know if that works in whatever "DOS" you are using)

link|flag
vote up 0 vote down

Why would you possibly want to? What goal are you trying to accomplish? If you want to simply look for a string in a file use FindStr. If you want to do anything much more complicated than that, I would strongly suggest not using a bat.

link|flag
I just want to know if this is posible – lk Oct 15 '08 at 19:42
Oh, and you are right. If ANYONE want to do something complicated with a file i also recommend not to use a bat. This is experimental and to make some funny things DO NOT TRY THIS AT HOME! :) – lk Oct 15 '08 at 19:49
vote up 0 vote down

Reading and writing in binary is possible, but that will get ugly.

link|flag
Is it possible? ja.. I like to see that! :D – lk Jul 16 at 14:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.