VSCode的备份和还原
Posted wittxie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode的备份和还原相关的知识,希望对你有一定的参考价值。
建立.bat脚本分别放入以下两端代码
备份.bat
@echo off
set source1="C:Users\%USERNAME%AppDataRoamingCode"
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%AppDataRoamingCode"
set source2="..vscode"
set target2="C:Users\%USERNAME%.vscode"
xcopy "%source1%" "%target1%" /e /y /d /i
xcopy "%source2%" "%target2%" /e /y /d /i
以上是关于VSCode的备份和还原的主要内容,如果未能解决你的问题,请参考以下文章