Skip to content

Instantly share code, notes, and snippets.

@dd86k
Created July 21, 2015 23:50
Show Gist options
  • Save dd86k/b9cead0157cfb04615fe to your computer and use it in GitHub Desktop.
Save dd86k/b9cead0157cfb04615fe to your computer and use it in GitHub Desktop.
Clean files under 2 MB
@ECHO OFF
REM Written by DD~!
REM Loop within the files, current directory
FOR %%A IN (*) DO (
REM If the file isn't the script file (filename)
IF NOT "%%A"=="%~nx0" (
REM If the file is under 1 MB, delete it
IF %%~zA LEQ 2097152 DEL /Q "%%~A"
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment