Skip to content

Instantly share code, notes, and snippets.

@YHaruoka
Created June 22, 2022 05:34
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 YHaruoka/6e47030e94b025a57dcdc7c118cc2580 to your computer and use it in GitHub Desktop.
Save YHaruoka/6e47030e94b025a57dcdc7c118cc2580 to your computer and use it in GitHub Desktop.
@echo off
for %%i in (*) do (
echo %%i >> filelist1.txt
)
for %%i in (*.jpg) do (
echo %%i >> filelist2.txt
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment