Skip to main content

mount

Function mount 

Source
pub fn mount(
    fs: Box<dyn ForensicFs + Send>,
    mountpoint: &Path,
    session: Option<Session>,
    options: &MountOptions,
) -> Result<()>
Expand description

Mount a forensic filesystem via FUSE (or Dokan on Windows).

This is the main entry point for consumers. Pass a ForensicFs implementation and a MountOptions, and this dispatches to the correct platform backend.

On Unix the mount is handled by fuser. On Windows it is handled by Dokan (the MIT dokan crate).