13 lines
198 B
Batchfile
13 lines
198 B
Batchfile
echo %~dp0
|
|
|
|
set Src=%~dp0Source
|
|
|
|
rd /S /Q "%Src%"
|
|
md "%Src%"
|
|
|
|
robocopy "%~dp0..\F4SDwebService\Publish" "%Src%" * /S /E
|
|
del /F /Q "%Src%\Config\*.XML"
|
|
del /F /Q "%Src%\License\*"
|
|
|
|
pause
|