Assume I have this structure:
d:/
-- /alpha/
-- /beta/
-- /gamma/
-- /delta/
I'm trying to execute a batch file that goes through those folders (but not through sub-folders within them).
How do I get this result using a FOR LOOP (assuming I don't know the name and quantity of the folders):
ren alpha alpha1
ren beta beta1
ren gamma gamma1
ren delta delta1