Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <ul> <li>What is the difference between Location and Relative path.</li> </ul> <p>The Location is the full path (e.g. <code>/home/user123/workspcae/proj1/src/foo.c</code>), where relative path is only the part within the project directory (e.g. <code>src/foo.c</code>)</p> <ul> <li>The check box "Apply recursively" is also confusing me a bit.</li> </ul> <p>Means the rule is not only used for the projet-root, but also for any sub-directory. I.e. a rule to match <code>src/*.c</code> won't do anything without "Apply recursivly", because it only matches files in the sub-directory <code>src</code> </p> <ul> <li>There is a way to specify regular expression but if I put a regex starting with *, like <em>/root/A/</em> or <em>/myproject/A/</em> it will give error saying "Dangling meta character near index 0".</li> </ul> <p>You are using wildcards, not regular expressions. regex are much more complex, and stars mean the previous 'object' may occur zero or more times. Without this previous object Eclipse gets confused. Just don't check the regex-box and it should work as you expected, or add a dot before the star, meaning any character.</p> <p><em><strong>To Solve your Problem do:</em></strong></p> <blockquote> <p>Project -> Properties -> Resource -> Resource Filters</p> </blockquote> <ul> <li>Include only: <ul> <li>Folder: (name match) a</li> <li>Folder: (name match) b</li> <li>Folder: (name match) c</li> </ul></li> <li>Exclude all: <ul> <li>Files: (name match) *</li> </ul></li> </ul> <blockquote> <p>Folder c -> Properties -> Resource -> Resource Filters</p> </blockquote> <ul> <li>Include only: <ul> <li>Folder: (name match) d</li> </ul></li> <li>Exclude all: <ul> <li>Files: (name match) *</li> </ul></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload