Skip to main content

Search a filesystem using zero or more file and directory filters.

Project description

FSS will recursively scan the given directory for matching files and yield results as a generator. You may provide a list of include/exclude rules for files and/or directories.

The searching is done asynchronously from another process. This way, the searching and whatever you’re doing with the results may potentially run in parallel.

Usage

Example:

.. code-block:: python

    import fss.constants
    import fss.config.log
    import fss.orchestrator

    root_path = '/etc'

    filter_rules = [
        (fss.constants.FT_DIR, fss.constants.FILTER_INCLUDE, 'init'),
        (fss.constants.FT_FILE, fss.constants.FILTER_INCLUDE, 'net*'),
        (fss.constants.FT_FILE, fss.constants.FILTER_EXCLUDE, 'networking.conf'),
    ]

    o = fss.orchestrator.Orchestrator(root_path, filter_rules)
    for (entry_type, entry_filepath) in o.recurse():
        if entry_type == fss.constants.FT_DIR:
            print("Directory: [%s]" % (entry_filepath,))
        else: # entry_type == fss.constants.FT_FILE:
            print("File: [%s]" % (entry_filepath,))

Output:

Directory: [/etc/init]
File: [/etc/networks]
File: [/etc/netconfig]
File: [/etc/init/network-interface-container.conf]
File: [/etc/init/networking.conf]
File: [/etc/init/network-interface-security.conf]
File: [/etc/init/network-interface.conf]

Notice that we include directories named “init” but that we’ll still see matching files from the root-path.

Requirements

  • Python 3.4

Installation

PyPI:

$ sudo pip3 install pathscan

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pathscan-0.2.0.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

pathscan-0.2.0-py2-none-any.whl (12.0 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page