清理编译后临时文件脚本

简介: @echo off SET Pash=%cd% rem 删除当前目录下所有obj,bin目录for /f "tokens=*" %%a in ('dir obj /b /ad /s ^|sort') do rd "%%a" /s/qfor /f "tokens=*" %%a in ('dir ...

@echo off

SET Pash=%cd%

rem 删除当前目录下所有obj,bin目录
for /f "tokens=*" %%a in ('dir obj /b /ad /s ^|sort') do rd "%%a" /s/q
for /f "tokens=*" %%a in ('dir bin /b /ad /s ^|sort') do rd "%%a" /s/q

del %Pash%\Build\Release\Client\*.* /s/q
del %Pash%\Build\Release\WcfService\*.* /s/q
del %Pash%\Build\Release\WcfService\Modules\*.* /s/q

rem 跳转目录
cd %Pash%\Build\Release\WebApp
del /s /q *
for /F %%i in ('dir /b') do rmdir /s /q %%i

echo 清理完成!

mkdir %Pash%\Services\POYA.ACS.AppServer\bin\Debug\Modules

cd %Pash%\Services\POYA.ACS.AppServer\bin\Debug\Modules
echo.>>服务插件测试.txt

pause

目录
相关文章
|
7月前
|
运维
简记:清理指定后缀名文件的 powerhsell 小脚本
简记:清理指定后缀名文件的 powerhsell 小脚本
62 0
非常实用的清理buffcache小脚本
非常实用的清理buffcache小脚本
|
7月前
|
弹性计算 运维 Shell
自动清理临时文件
【4月更文挑战第30天】
52 0
批处理清理SVN文件BAT脚本
批处理清理SVN文件BAT脚本
84 0
|
Shell Linux
Shell脚本删除自动清理超过大小的文件
Shell脚本删除自动清理超过大小的文件
311 0
|
运维
清理指定后缀名文件的 powerhsell 小脚本
工作日记:清理指定后缀名文件的 powerhsell 小脚本
73 0
如何清理cmake产生的各种文件
如何清理cmake产生的各种文件
1378 0
好工具推荐系列:写个.bat批处理脚本,实现一键删除VC++目录下的临时文件
好工具推荐系列:写个.bat批处理脚本,实现一键删除VC++目录下的临时文件
169 0