How can I exclude some folders from my Eclipse project?

后端 未结 5 1983
自闭症患者
自闭症患者 2021-01-30 03:30

I\'m adding an eclipse project to our existing code-base, and I\'d like to know if there is a way to exclude some directories from being picked up by eclipse at all? The reason

5条回答
  •  轮回少年
    2021-01-30 04:19

    If you want to add filters directly inside .project file, these are some rules:

        6 
        5 
        13 
        26
    
        1.0-name-matches-false-false-xyz 
        1.0-name-matches-true-false-EEE 
        1.0-name-matches-false-false-www 
    

    One .project filter section for example:

        
            
                1567020347706
                
                6 
                
                    org.eclipse.ui.ide.multiFilter
                    1.0-name-matches-false-false-abc
                
            
            
                1567020347708
                
                5 
                
                    org.eclipse.ui.ide.multiFilter
                    1.0-name-matches-false-false-xyz 
                
            
            
                1567020347711
                
                13
                
                    org.eclipse.ui.ide.multiFilter
                    1.0-name-matches-false-false-mno
                
            
            
                1567020347713
                
                26
                
                    org.eclipse.ui.ide.multiFilter
                    1.0-name-matches-true-false-EEE 
                
            
            
                1567020347716
                
                26 
                
                    org.eclipse.ui.ide.multiFilter
                    1.0-name-matches-false-false-www 
                
            
        
    

提交回复
热议问题