Visual Studio Code extentsion to synchronize files between a workspace folder and one or many outside folders.
Multiple mappings supported.
,"filesync.mappings": [ { "source": "C:\\Dev\\Apple", "destination": "Z:\\Stage\\Apple"} , { "source": "C:\\Dev\\Peach" , "destination": [ "Y:\\Stage\\Peach", "Z:\\Live\\Peach" ] } , { "source": "C:\\Dev\\Orange" ,"destination": [ { "path": "Y:\\Stage\\Orange", "name": "Stage" } , {"path": "Z:\\Live\\Orange", "name": "Live" } ] } ]None.
filesync.mappings: An array of mappings to sync onesourcefolder across one or multipledestinationfolders.
{ "source": "C:\\Dev\\Apple", "destination": "Z:\\Stage\\Apple" }source: Root path of your workspace folder. Any files saved will be copied out to thedestination.desitnation: Path of folder to keep in sync with workspace folder (source).
Only simple mappings currently supported.
Initial release of FileSync.