Answers for "find command in windows to list directory structure"

C
1

directory folders structure show windows 10 command prompt

tree
Posted by: Guest on June-06-2021
0

how to get list folder in cmd to value

@echo off
setlocal disableDelayedExpansion
set "files=."
for /r %%F in (*) do (
  setlocal enableDelayedExpansion
  for /f "delims=" %%A in ("!files!") do (
    endlocal
    set "files=%%A "%%F"
  )
)
(set files=%files:~2%)
Posted by: Guest on October-29-2020

Code answers related to "find command in windows to list directory structure"

Code answers related to "C"

Browse Popular Code Answers by Language