Flipper/Clean_up_files.bat
forid786 20717e949a
Update Clean_up_files.bat
- Added deletion of PDFs
- Cleanup Attributes 
- Grouped deletions
2024-10-19 22:56:24 +01:00

15 lines
434 B
Batchfile

@echo off
@title Flipper SD Cleaner
cls
cd /D "%~dp0"
echo This will DELETE the following file types from %~dp0 and all subdirectories:
echo .git, .mp4, .jp*, .png, .md, .pdf, and README files.
echo Press any key to continue, or close this window to abort.
pause > NUL
echo Deleting files, please wait...
attrib -h -s -r /s /d *.*
del /s /q *.git *.mp4 *.jp* *.png *.md *.pdf README
echo Done! Press any key to exit.
pause > NUL
exit