goaff4

package module
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 18, 2021 License: MIT Imports: 17 Imported by: 1

README

goaff4

coverage doc

Read forensic disk images in the Advanced Forensics File Format (AFF4) as io/fs.FS.

Example

func main() {
	f, _ := os.Open("Base-Linear.aff4")
	info, _ := f.Stat()

	// init file system
	aff4, _ := goaff4.New(f, info.Size())

	// read root directory
	infos, _ := fs.ReadDir(aff4, ".")

	// print files
	for _, info := range infos {
		fmt.Println(info.Name())
	}
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(r io.ReaderAt, s int64) (fs.FS, error)

Types

This section is empty.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL