Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/123908951835f73e4ff3ee261ed7d4c5 to your computer and use it in GitHub Desktop.
Save ezhov-da/123908951835f73e4ff3ee261ed7d4c5 to your computer and use it in GitHub Desktop.
bat список файлов из директории
rem http://forum.oszone.net/thread-200208.html
@Echo Off
SetLocal EnableDelayedExpansion
For /F "delims=" %%N In ('Dir "%~dp0\highlight" /B /L /O:N') Do (Set Names=!Names! %%N)
If "%Names:~,1%"==" " Set Names=%Names:~1%
Echo %Names%
Pause
@Echo Off
SetLocal EnableDelayedExpansion
For /F "delims=" %%N In ('Dir "E:\lib" /B /L /O:N') Do (Set Names=!Names! %~dp0lib\%%N;)
If "%Names:~,1%"==";" Set Names=%Names:~1%
Echo %Names%
Pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment