Skip to content

Instantly share code, notes, and snippets.

@RayTwitty
Created July 28, 2018 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RayTwitty/fa14e2cc097b0fac5ace83e7b9b2f39b to your computer and use it in GitHub Desktop.
Save RayTwitty/fa14e2cc097b0fac5ace83e7b9b2f39b to your computer and use it in GitHub Desktop.
Сохраняет список файлов папки без расширения в указанный файл. Файлы с расширением .thm игнорируются.
for /f "delims=" %%a in ('dir /b /s /a-d "*"') do if /I not %%~xa==.THM echo %%~na >> "file_list.txt"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment