Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 391 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 391 Bytes

go-losetup

A losetup implementation for go-lang.

how to get it

go get github.com/freddierice/go-losetup/v2

example usage

// attach a raw file to a loop device
dev, err := losetup.Attach("rawfile.img", 0, false)
if err != nil {
	// error checking
}

fmt.Printf("attached rawfile.img to %v\n", dev.Path())

err := dev.Detach()
if err != nil {
	// error checking
}