Created
December 26, 2017 18:52
-
-
Save 4F2E4A2E/181bc2153b24787549a68890d3a0fec0 to your computer and use it in GitHub Desktop.
Remove empty files and images from current folder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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