Home > other >  Batch: read file from path
Batch: read file from path

Time:02-23

I want to read a .txt file using batch script. Each line should be stored in a variable.

My problem: I have to give the command a file path to the .txt file. Unfortunately this hasn't worked so far. The solution is probably very simple, but I haven't found it yet.

for /f "tokens=*" %%a in ("%FilePath           
  • Related