By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!rem ----- list subfolders
for /r /D j:\taqDAILYNBBO\ %x in (*) (
rem ----- list all files in the subfolder
for %x %y in (*) (
echo ticker= %y
)
)
This produces an error -- what am I doing wrong?
for /r /d j:\taqDAILYNBBO\ %x in ( * ) for %y in ( %x\* ) echo ticker= %y
for /r j:\taqDAILYNBBO\ %y in ( * ) echo ticker= %y