In windows, to list only directories:
dir /ad /b /s
to list all files (and no directories):
dir /a-d /b /s
redirect the output to a file:
dir /a-d /b /s > filename.txt
dir command parameters explained on wikipedia
In windows, to list only directories:
dir /ad /b /s
to list all files (and no directories):
dir /a-d /b /s
redirect the output to a file:
dir /a-d /b /s > filename.txt
dir command parameters explained on wikipedia