Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Here are some examples and expected behaviors:

Filter Text

Result

svn##.git##*.temp

Ignore any .temp files (and any files named svn or .git)
AND any content in a folder named svn, .git, or .temp

*.war

Ignore all .war files

*.tmp##boring.xml##readme.md

Ignore all .tmp files, boring.xml, and readme.md

Combining include and exclude filters

File Filer

File Exclude Filter

Result

.war##.jar

badProject

Copy all .war and .jar files, unless there is a folder named badProject in its path

.war##.ear

badProject.war

Copy all .ear and .war files, except badProject.war


*.tmp##boring.xml##readme.md

Copy everything except all .tmp files, boring.xml, and readme.md

*.war


Copy all .war files

Important.*

*.class

Copy all files that start with Important. Unless they end in .class

  • No labels