VSCode的备份和还原
建立.bat脚本分别放入以下两端代码
备份.bat
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。@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

更多精彩