finder

package
v1.3.0 Latest Latest
Warning

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

Go to latest
Published: Jun 1, 2023 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FileFinder

type FileFinder interface {
	Find(pathRoot string, fileTypes []filetype.FileType, excludeDirs []string) ([]FileMetadata, error)
}

Find will return an array of FileMetadata objects from a provided path and array of FileTypes. Any files in subdirectories defined in excludeDirs will not be returned

type FileMetadata

type FileMetadata struct {
	Name     string
	Path     string
	FileType filetype.FileType
}

The File Metadata object stores the name and the path of the file and the type of file that it is, example: json, yml, etc

type FileSystemFinder

type FileSystemFinder struct{}

func (FileSystemFinder) Find

func (fsf FileSystemFinder) Find(pathRoot string, fileTypes []filetype.FileType, excludeDirs []string) ([]FileMetadata, error)

Find implements the FileFinder interface by recursively walking through all subdirectories (excluding the excluded subdirectories) and identifying if the file matches a type defined in the fileTypes array.

Jump to

Keyboard shortcuts

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