I saved a lot of files in "mywork" folder which stored in many folders and subfolders.
How to create a batch file to list all folders in which including "mywork" folder?
From searching, below batch only list all folders.
@echo off
for /d %%D in (*) do echo %%~nxD



Back to top







