:py:mod:`dissect.target.loaders.multiraw` ========================================= .. py:module:: dissect.target.loaders.multiraw Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.multiraw.MultiRawLoader .. py:class:: MultiRawLoader(path: pathlib.Path, **kwargs) Bases: :py:obj:`dissect.target.loader.Loader` Load multiple raw containers as a single target (i.e. a multi-disk system). Use as ``/path/to/disk1+/path/to/disk2`` to load a single target with two disks. The disks can be anything that Dissect supports such as EWF, VMDK, etc. .. py:method:: detect(path: pathlib.Path) -> bool :staticmethod: Detects wether this ``Loader`` class can load this specific ``path``. :param path: The target path to check. :returns: ``True`` if the ``path`` can be loaded by a ``Loader`` instance. ``False`` otherwise. .. py:method:: map(target: dissect.target.target.Target) -> None Maps the loaded path into a ``Target``. :param target: The target that we're mapping into.