cmd list folders code example

Example 1: cmd files in directory

Enter “dir(without quotes) to list the files and folders contained in the folder.

Example 2: how to get list folder in cmd to value

@echo off
setlocal disableDelayedExpansion
:: Load the file path "array"
for /f "tokens=1* delims=:" %%A in ('dir /s /b^|findstr /n "^"') do (
  set "file.%%A=%%B"
  set "file.count=%%A"
)

:: Access the values
setlocal enableDelayedExpansion
for /l %%N in (1 1 %file.count%) do echo !file.%%N!

Example 3: how to get list folder in cmd to value

for /f "eol=: delims=" %%F in ('dir /b /o:n') do set /p =""%%F","