VSCode的备份和还原
建立.bat脚本分别放入以下两端代码
备份.bat
@echo off
set source1="C:\Users\%USERNAME%\AppData\Roaming\Code"
set target1=".\Code"
set source2="C:\Users\%USERNAME%\.vscode"
set target2=".\.vscode"
xcopy "%source1%" "%target1%" /e /y /d /i
xcopy "%source2%" "%target2%" /e /y /d /i
还原.bat
@echo off
set source1=".\Code"
set target1="C:\Users\%USERNAME%\AppData\Roaming\Code"
set source2=".\.vscode"
set target2="C:\Users\%USERNAME%\.vscode"
xcopy "%source1%" "%target1%" /e /y /d /i
xcopy "%source2%" "%target2%" /e /y /d /i