forked from Notalib/OpenMCDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Clean.cmd
61 lines (48 loc) · 1.73 KB
/
Clean.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@ECHO OFF
CHOICE /CS /C Yn /M "WARNING: THIS SCRIPT MUST RUN INSIDE OpenMcdf directory. FILES WILL BE DELETED WITHOUT PROMPT. Continue ? (Y/n)"
if ERRORLEVEL 2 GOTO SCRIPTEND
echo "Working..."
rd /s /Q "Memory Test\bin\Debug"
rd /s /Q "Memory Test\bin\Release"
rd /s /Q "Memory Test\obj\Debug"
rd /s /Q "Memory Test\obj\Release"
rd /s /Q "Memory Test\bin"
rd /s /Q "Memory Test\obj"
rd /s /Q "Unit Test\bin\Debug"
rd /s /Q "Unit Test\bin\Release"
rd /s /Q "Unit Test\obj\Debug"
rd /s /Q "Unit Test\obj\Release"
rd /s /Q "Unit Test\bin"
rd /s /Q "Unit Test\obj"
rd /s /Q Src\bin\Debug
rd /s /Q Src\bin\Release
rd /s /Q Src\obj\Debug
rd /s /Q Src\obj\Release
rd /s /Q Src\bin
rd /s /Q Src\obj
rd /s /Q "OpenMcdf.Extensions\bin\Debug"
rd /s /Q "OpenMcdf.Extensions\bin\Release
rd /s /Q "OpenMcdf.Extensions\obj\Debug"
rd /s /Q "OpenMcdf.Extensions\obj\Release"
rd /s /Q "OpenMcdf.Extensions\bin"
rd /s /Q "OpenMcdf.Extensions\obj"
rd /s /Q "OpenMcdfExtensionsTest\bin\Debug"
rd /s /Q "OpenMcdfExtensionsTest\bin\Release
rd /s /Q "OpenMcdfExtensionsTest\obj\Debug"
rd /s /Q "OpenMcdfExtensionsTest\obj\Release"
rd /s /Q "OpenMcdfExtensionsTest\obj"
rd /s /Q "OpenMcdfExtensionsTest\bin"
rd /s /Q "Structured Storage Explorer\bin\Debug"
rd /s /Q "Structured Storage Explorer\bin\Release
rd /s /Q "Structured Storage Explorer\obj\Debug"
rd /s /Q "Structured Storage Explorer\obj\Release"
rd /s /Q "Structured Storage Explorer\bin"
rd /s /Q "Structured Storage Explorer\obj"
rd /s /Q "Performance Test\bin\Debug"
rd /s /Q "Performance Test\bin\Release"
rd /s /Q "Performance Test\obj\Debug"
rd /s /Q "Performance Test\obj\Release"
rd /s /Q "Performance Test\bin"
rd /s /Q "Performance Test\obj"
rd /s /Q TestResults
:SCRIPTEND