blob: 3b6d4acd53fa5b6cfd47b024c45363b32257d9d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@echo off
pushd ".\bin8"
cls
echo Leere Zwischenverzeichnis
if not errorlevel 1 (
attrib /s -s -r -h *.* > NUL
del /s /f /q *.* > NUL
pushd ..
rd /s /q bin8 > NUL
)
attrib /s -s -r -h *.aps > NUL
del /s /f /q *.aps > NUL
attrib /s -s -r -h *.user > NUL
del /s /f /q *.user > NUL
attrib /s -s -r -h *.suo > NUL
del /s /f /q *.suo > NUL
attrib /s -s -r -h *.ncb > NUL
del /s /f /q *.ncb > NUL
|