Skip to content

Instantly share code, notes, and snippets.

@4F2E4A2E
Created December 26, 2017 18:52
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 4F2E4A2E/181bc2153b24787549a68890d3a0fec0 to your computer and use it in GitHub Desktop.
Save 4F2E4A2E/181bc2153b24787549a68890d3a0fec0 to your computer and use it in GitHub Desktop.
Remove empty files and images from current folder.
@echo off
FOR %%F IN (*.*) DO (
IF %%~zF LSS 1 DEL %%~nf.png
IF %%~zF LSS 1 DEL %%F
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment