Merge pull request #626 from forid786/patch-1

Update Clean_up_files.bat
This commit is contained in:
UberGuidoZ 2024-10-22 21:45:35 -07:00 committed by GitHub
commit 8e90999a6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,14 @@
echo off @echo off
@title Flipper SD Cleaner @title Flipper SD Cleaner
cls cls
cd /D "%~dp0" cd /D "%~dp0"
echo. echo This will DELETE the following file types from %~dp0 and all subdirectories:
echo Continuing will DELETE FILES from %~dp0 and all subdirectories. echo .git, .mp4, .jp*, .png, .md, .pdf, and README files.
echo All .git, .mp4, .jp*, .png, .md, and README files will be removed! echo Press any key to continue, or close this window to abort.
echo.
echo If you're good with that, press any key to continue. Otherwise, close out.
pause > NUL pause > NUL
echo. echo Deleting files, please wait...
echo Deleting files, please wait... attrib -h -s -r /s /d *.*
attrib *.* -h -s -r /s del /s /q *.git *.mp4 *.jp* *.png *.md *.pdf README
del *.git /s /q echo Done! Press any key to exit.
del *.mp4 /s /q
del *.jp* /s /q
del *.png /s /q
del *.md /s /q
del README /s /q
echo.
echo Done! Press any key to exit. (Scroll up for errors if desired.)
pause > NUL pause > NUL
exit exit