Skip to content

Instantly share code, notes, and snippets.

@zinntikumugai
Created April 28, 2017 23:29
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 zinntikumugai/126d315ab590303ee7cbc1b45906b0f1 to your computer and use it in GitHub Desktop.
Save zinntikumugai/126d315ab590303ee7cbc1b45906b0f1 to your computer and use it in GitHub Desktop.
一部を覗いて「.m4a」を削除する
@echo off
cd /d %~dp0
setlocal enabledelayedexpansion
for /f "usebackq delims=" %%i in (`dir /B /S *.m4a`) do (
echo ----------------------------------------------------
echo %%i
echo.
del %%i
echo ----------------------------------------------------
)
echo.
pause
exit /b 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment