Categorygithub.com/mogaika/udf
modulepackage
0.0.0-20171019171931-167f0ab01c73
Repository: https://github.com/mogaika/udf.git
Documentation: pkg.go.dev

# README

Udf filesystem golang library

  • Non-optimized
  • Some functioal is broken
  • recovery() style error handling interface
  • Work only with certain iso's

It's all because I has reached requried functional for me.

Example

package main

import (
	"fmt"
	"os"
	"github.com/mogaika/udf"
)

func main() {
	r, _ := os.Open("example.iso")
	u := udf.NewUdfFromReader(r)
	for _, f := range u.ReadDir(nil) {
		fmt.Printf("%s %-10d %-20s %v\n", f.Mode().String(), f.Size(), f.Name(), f.ModTime())
	}
}

Output:

-r-xr-xr-x 57         system.cnf           2006-02-11 00:00:00 +0000 UTC
-r-xr-xr-x 1911580    SCUS_973.99          2006-03-15 00:00:00 +0000 UTC
-r-xr-xr-x 278305     ioprp300.img         2005-11-14 00:00:00 +0000 UTC
-r-xr-xr-x 6641       sio2man.irx          2005-10-18 00:00:00 +0000 UTC
-r-xr-xr-x 15653      dbcman.irx           2005-10-18 00:00:00 +0000 UTC

# Packages

No description provided by the author

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author
DESCRIPTOR_FILE_ENTRY
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DESCRIPTOR_INDIRECT_ENTRY
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DESCRIPTOR_TERMINAL_ENTRY
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author