diff --git a/docs/plugins/filefilter.rst b/docs/plugins/filefilter.rst index 8feee9096..3daa5b9c6 100644 --- a/docs/plugins/filefilter.rst +++ b/docs/plugins/filefilter.rst @@ -1,16 +1,16 @@ FileFilter Plugin ================= -The ``regexfilefilter`` plugin allows you to skip files during import using +The ``filefilter`` plugin allows you to skip files during import using regular expressions. -To use the ``regexfilefilter`` plugin, enable it in your configuration (see +To use the ``filefilter`` plugin, enable it in your configuration (see :ref:`using-plugins`). Configuration ------------- -To configure the plugin, make an ``regexfilefilter:`` section in your +To configure the plugin, make an ``filefilter:`` section in your configuration file. The available options are: - **path**: A regular expression to filter files based on its path and name. @@ -23,7 +23,7 @@ configuration file. The available options are: Here's an example:: - regexfilefilter: + filefilter: path: .*\d\d[^/]+$ # will only import files which names start with two digits album_path: .*\d\d[^/]+$