I know that over whole Internet there was many topics about windows command line, but it's still not enough for me. Although I haven't got any problems when I'm writing loops in real programming language like Python to check all subfolders, I am unable to do it under windows CMD. I'm really annoyed (and really sorry if I am annoying you).
I tried both /r and /d switches, but I can't accomplish simply operation - get a list of files in subfolders:
for /d %%p in ("pathHERE*.jpg") DO echo %%p
I get an error message:
%%p was unexpected at this time.
Could you tell me where I can find WORKING (over Internet I found many script which I am unable to run - I am aware that there was some differencies between batch files and commands manually typed from keyboard) examples of operations such as copying all files with specified extension from all subfolders to another location or prepare list of all subfolders?