terse 当前离线
中将
@echo off (for %%i in (.scc .log .config \log\ \Bin\ \.git\ \.vs\) do echo %%i)>EXCLUDE md "D:\app2\" 2>nul xcopy "D:\app" "D:\app2\" /E /H /R /Y /EXCLUDE:EXCLUDE pause复制代码
评分人数
TOP
@echo off set /p SourcePath=请输入或拖入源文件夹路径: set TargerPath=%SourcePath%2 md "%TargerPath%">nul ROBOCOPY "%SourcePath%" "%TargerPath%" /XF *.scc *.log *.config *.gitattributes *.gitignore *.publishproj /XD log Bin .git /s /e pause复制代码