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
posted @ 2019-04-14 19:01  WittXie  阅读(2682)  评论(0编辑  收藏  举报