I am intested in creating a batch file that can read in a text file which has four variables: customer name, customer number, customer order, products orders. I am using:
FOR /F "delims=, tokens=1,2,3,4" %%f in (test.txt)do md g:\%%f\%%g\%%h\%%i
However, it does not seem to create the subdirectories correct.
Can any one help?