What is a 'workspace' in Visual Studio Code?

后端 未结 13 964
死守一世寂寞
死守一世寂寞 2020-11-27 08:35

I can\'t quite believe I am asking this question, but I have not been able to find a definition in the documentation. In case it isn\'t painfully obvious, I am (very) ne

相关标签:
13条回答
  • 2020-11-27 09:41

    The main utility of a workspace (and maybe the only one) is to allow to add multiple independent folders that compounds a project. For example:

    - WorkspaceProjectX  
    -- ApiFolder   (maybe /usr/share/www/api)  
    -- DocsFolder  (maybe /home/user/projx/html/docs)  
    -- WebFolder   (maybe /usr/share/www/web)
    

    So you can group those in a work space for a specific project instead of have to open multiple folders windows.

    You can learn more here.

    0 讨论(0)
提交回复
热议问题