Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions clear_logs.bat
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
setlocal
for /d %%i in ( C:\Instrument\Var\logs C:\Instrument\Var\autosave ) do (
REM ignore errors - possibly antivirus related?
for /d %%i in ( C:\Instrument\Var\logs C:\Instrument\Var\autosave C:\Instrument\Var\logs ) do (
@echo Cleaning %%i
if exist "%%i" (
pushd %%i
del /s /q *.* >NUL
del /s /q *.* >NUL 2>&1
popd
)
)
Expand Down
Loading