回复 10# terse - @echo off
- set /p SourcePath=请输入或拖入要清理的文件夹路径:
- set TargerPath=%SourcePath%1
- set TempFile=tempFile1
- (for %%i in (.config .gitattributes .gitignore \.git\ \.vs\ \log\) do echo %%i)>%TempFile%
- md %TargerPath%>nul
- xcopy %SourcePath% %TargerPath% /E /H /R /Y /EXCLUDE:%TempFile% rem:【注意】EXCLUDE需要修改
- del %TempFile%
- pause
复制代码 另外,和前面的反过来,只复制指定的文件夹、文件(文件层次结构不变),EXCLUDE需要怎么修改? |