Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ChildEntry ¶
type FileAttributes ¶
type Importer ¶
type Importer struct {
// contains filtered or unexported fields
}
func NewImporter ¶
func (*Importer) NewReader ¶
func (importer *Importer) NewReader(pathname string) (io.ReadCloser, error)
func (*Importer) Scan ¶
func (importer *Importer) Scan() (<-chan ScanResult, error)
type ImporterBackend ¶
type ImporterBackend interface { Origin() string Type() string Root() string Scan() (<-chan ScanResult, error) NewReader(pathname string) (io.ReadCloser, error) Close() error }
type RecordType ¶
type RecordType int8
const ( RecordTypeFile RecordType = 0 RecordTypeDirectory RecordType = 1 RecordTypeSymlink RecordType = 2 RecordTypeDevice RecordType = 3 RecordTypePipe RecordType = 4 RecordTypeSocket RecordType = 5 )
type ScanRecord ¶
type ScanResult ¶
type ScanResult interface {
// contains filtered or unexported methods
}
Click to show internal directories.
Click to hide internal directories.