vote up 2 vote down star

Hi,

for testing purposes i need an recursive directory with some files, that comes to maximum path-length.

The Script used for the creation consists only of two for-loops, as followed:

for /L %%a in (1 1 255) do @(
    mkdir %%a
    && cd %%a
    && for /L %%b in (1 1 %random%) do @(
    		echo %%b >> %%a.txt
    	)
)

Now I would like to embed this script as part of another script, since more is to be done, but I can not add any other commands around it or it refuses working. I use this under windows vista, if this is useful to you.

Nor it works if i write "@ECHO OFF" in first line, neither with "echo done" on the last line.

output on commandline is:

X:\Scripte>recursive.cmd
OFFfor /L %a in (1 1 255) do @( mkdir %a
The system cannot find the path specified.

EDIT: Seems to be a problem with layer 8, the problem seems to be in the command shell used, if used the bare cmd.exe, it works, with visual studio 2008 command shell it does not work, like stated above.

anyway, thank you.

flag

67% accept rate
Are you calling this script from the other script, or copy/pasting this code in another script? Can you please provide more details. – Patrick Cuff Dec 11 '08 at 12:09
It looks, from the output you provided, as if the newline character in your text editor (between "@echo off" and "for /L...") is not correct. What are you using to edit the batch file? – Bernhard Hofmann Dec 11 '08 at 12:10
I used the notepad++ to edit the file. seems weird, c&p to another file works, but only one time, then, with a new cmd shell it fails again. – BeowulfOF Dec 14 '08 at 12:14

1 Answer

vote up 1 vote down check

I don't think you need the '@'s in front of the parens or the '&&' within the for loop body; the parens take care of handling multiple statements in the for loop.

The following works for me:

@echo OFF

for /L %%a in (1 1 255) do (
    @echo a = %%a
    mkdir %%a
    cd %%a
    for /L %%b in (1 1 %random%) do (
        echo %%b >> %%a.txt
    )
)

@echo done
link|flag
The "@" is not needet, but if I do remove the "&&" it does not work either. – BeowulfOF Dec 11 '08 at 12:19
Hmmm. what are you using to edit the script? As Bernhard mentions in his comment, theres something odd here. You would only need the '&&' of all the commands were on the same line. – Patrick Cuff Dec 11 '08 at 12:28
s/'&&' of/'&&' if – Patrick Cuff Dec 11 '08 at 12:29

Your Answer

Get an OpenID
or

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