cmd文件複製,刪除

刪除文件夾:.net

@echo off
echo==========Begin================
set targetdir="%cd%\ALL"
set /p confirmdel=Confirm to delete the directory?(y/n):
if "%confirmdel%"=="y" goto del
if "%confirmdel%"=="Y" goto del
goto endget

:del
echo Processing...
rd /s /q %targetdir%
md %targetdir%
goto end
:end
echo==========End================
pause刪除文件

文件夾複製di

@echo off
echo==========Begin================
set /p confirmcopy=Confirm to copy the directory?(y/n) :
if "%confirmcopy%"=="y" goto copy
if "%confirmcopy%"=="Y" goto copy
goto end文件

:copy
set sourcedir="源文件夾地址"
set targetdir="目標文件夾地址"
set copyparams=/e /i /y /w
xcopy %sourcedir% %targetdir% %copyparams%copy

:end
echo==========End================
pauseco

相關文章
相關標籤/搜索