2024-10-19 21:56:24 +00:00
|
|
|
@echo off
|
2024-02-09 06:38:50 +00:00
|
|
|
@title Flipper SD Cleaner
|
|
|
|
cls
|
|
|
|
cd /D "%~dp0"
|
2024-10-23 04:47:51 +00:00
|
|
|
echo.
|
|
|
|
echo This will DELETE the following file types from %~dp0 and all subdirectories:
|
|
|
|
echo.
|
|
|
|
echo .git, .mp4, .jp*, .png, .md, .pdf, and README files.
|
|
|
|
echo.
|
|
|
|
echo If you're good with that, press any key to continue. Otherwise, X out to abort.
|
2024-02-09 06:38:50 +00:00
|
|
|
pause > NUL
|
2024-10-23 04:47:51 +00:00
|
|
|
echo.
|
|
|
|
echo Deleting files, please wait...
|
2024-10-19 21:56:24 +00:00
|
|
|
attrib -h -s -r /s /d *.*
|
|
|
|
del /s /q *.git *.mp4 *.jp* *.png *.md *.pdf README
|
2024-10-23 04:47:51 +00:00
|
|
|
echo.
|
|
|
|
echo Done! Press any key to exit. (Scroll up for errors if desired.)
|
2024-02-09 06:38:50 +00:00
|
|
|
pause > NUL
|
2024-10-19 21:56:24 +00:00
|
|
|
exit
|