Why can the search command statement in this batch file find subdirectories on the hard disk, but not subdirectories on the floppy drive?
for %%a in (a: c: d: e: f: g: h: i: j: k: l: m: n: o: p: q: r: s: t: u: v: w: x: y: z:)
do if exist %%a\*.bat dir /b /s %%a\*.bat
for %%a in (a: c: d: e: f: g: h: i: j: k: l: m: n: o: p: q: r: s: t: u: v: w: x: y: z:)
do if exist %%a\*.bat dir /b /s %%a\*.bat
