The filefilter plugin allows you to skip files during import using regular expressions.
To use the filefilter plugin, enable it in your configuration (see Using Plugins).
To configure the plugin, make a filefilter: section in your configuration file. The available options are:
Here’s an example:
filefilter:
path: .*\d\d[^/]+$
# will only import files which names start with two digits
album_path: .*\d\d[^/]+$
singleton_path: .*/(?!\d\d)[^/]+$