File Path Filter
Filters file paths using globs, regular expressions, or custom criteria
Example
const filePathFilter = require("file-path-filter");
const paths = [
"/some/path/index.html",
"/some/path/contact.html",
"/some/path/about.html",
"/some/path/favicon.ico",
"/some/path/img/logo.png",
];
// Filter using a glob pattern
paths.filter(filePathFilter("**/*.html"));
// Exclude glob patterns with "!"
paths.filter(filePathFilter("**/*.html", "!**/index.html"));
// Filter using a regular expression
paths.filter(filePathFilter(/\.(ico|png)$/));
// Filter using custom criteria
paths.filter(filePathFilter(path => path.length === 23));
// Use any combination of filters
paths.filter(filePathFilter([
"**/*.html",
"!**/index.html",
/\.(ico|png)$/,
path => path.length === 23
]));
// Explicitly specify include and exclude criteria
paths.filter(filePathFilter({
include: [
"**/*.html",
/\.(ico|png)$/,
path => path.length === 23
],
exclude: "**/index.html",
));
Installation
You can install file-path-filter via npm.
npm install file-path-filterUsage
filePathFilter(criteria)
-
criteria- The filter criteria. This can be any of the following:- A boolean.
truewill match all files.falsewill not match any files. - A glob pattern. If the pattern starts with
!, then it will be treated as anexcludepattern (see below) - A regular expression
- A filter function that accepts a file path and returns
trueif the file should be matched - An array containing any combination of the above types
- An object with
includeandexcludeproperties. Each of these properties can be any of the above types. File paths will be matched if they match any of theincludecriteria and do not match any of theexcludecriteria.
- A boolean.
-
return value- A filter function that matches file paths that meet the specified criteria
Contributing
Contributions, enhancements, and bug-fixes are welcome! File an issue on GitHub and submit a pull request.
Building
To build the project locally on your computer:
-
Clone this repo
git clone https://github.com/JS-DevTools/file-path-filter.git -
Install dependencies
npm install -
Build the code
npm run build -
Run the tests
npm test
License
File Path Filter is 100% free and open-source, under the MIT license. Use it however you want.
Big Thanks To
Thanks to these awesome companies for their support of Open Source developers ❤