Documentation ¶
Overview ¶
Package osutil implements some OS utility functions.
Package osutil implements some OS utility functions.
Index ¶
- Constants
- func AbsFilepath(path string) (string, error)
- func CreateFileWithLines(filename string, lines []string, lineSuffix string, useBuffer bool) error
- func EmptyAll(name string) error
- func EnvExists(fields ...string) (missing []string, haveAll bool)
- func EnvFiltered(rx *regexp.Regexp) map[string]string
- func Exists(name string) (bool, error)
- func FileModAge(name string) (time.Duration, error)
- func FileModAgeFromInfo(fi os.FileInfo) time.Duration
- func FinfosToFilepaths(dir string, fis []os.FileInfo) []string
- func GetFileInfo(path string) (os.FileInfo, error)
- func GoPath(parts ...string) string
- func IsDir(name string) (bool, error)
- func IsFile(name string, sizeGtZero bool) (bool, error)
- func MustUserHomeDir(subdirs ...string) string
- func ReadDirMore(dir string, rx *regexp.Regexp, inclDirs, inclFiles, inclEmptyFiles bool) ([]os.DirEntry, error)
- func ReadDirRxSubmatch(dir string, rx *regexp.Regexp, subMatchIdx uint, ...) (map[string][]os.DirEntry, error)
- func ReadDirRxSubmatchCaptureGreatest(dir string, rx *regexp.Regexp, subMatchIdx uint, ...) (string, error)
- func ReadDirRxSubmatchCaptures(dir string, rx *regexp.Regexp, subMatchIdx uint, ...) ([]string, error)
- func ReadDirRxSubmatchEntriesGreatest(dir string, rx *regexp.Regexp, subMatchIdx uint, ...) ([]os.DirEntry, error)
- func ReadSubdirMax(dir string, rx *regexp.Regexp) (os.DirEntry, error)
- func ReadSubdirMin(dir string, rx *regexp.Regexp) (os.DirEntry, error)
- func SortDirEntriesModTime(files DirEntries)
- func VisitFiles(name string, visitFunc func(dir string, info fs.FileInfo) error) error
- func VisitPath(dir string, rx *regexp.Regexp, inclDirs, inclFiles, inclEmptyFiles bool, ...) error
- type DirEntries
- func (entries DirEntries) Infos() ([]os.FileInfo, error)
- func (entries DirEntries) Len() int
- func (entries DirEntries) Less(i, j int) bool
- func (entries DirEntries) Names(dir string, sortNames bool) []string
- func (entries DirEntries) Sort()
- func (entries DirEntries) Swap(i, j int)
- func (entries DirEntries) WriteFileNames(filename, dir string, sortNames bool, perm os.FileMode) error
- type DirEntriesMore
- type DirEntryMore
- type EnvVar
- type FileInfoMore
Constants ¶
const ( ColDir = "dir" ColName = "name" ColPath = "path" ColSize = "size" )
Variables ¶
This section is empty.
Functions ¶
func AbsFilepath ¶
AbsFilepath returns an absolute filepath, using the user's current / home directory if indicated in the filepath string.
func CreateFileWithLines ¶
CreateFileWithLines creates a file and writes lines to it. It will optionally add a `lineSuffix` (e.g. `"\n"`) and use `bufio`.
func EmptyAll ¶
EmptyAll will delete all contents of a directory, leaving the provided directory. This is different from os.Remove which also removes the directory provided.
func EnvFiltered ¶
EnvFiltered returns a map[string]string of environment variables that match a regular expression.
func FileModAge ¶
FileModAge returns a time.Duration representing the age of the named file from FileInfo.ModTime().
func FileModAgeFromInfo ¶
FileModAgeFromInfo returns the file last modification age as a time.Duration.
func FinfosToFilepaths ¶
FinfosToFilepaths returns a slice of string from a directory and sli=ce of `os.FileInfo`.
func GetFileInfo ¶
GetFileInfo returns an os.FileInfo from a filepath.
func IsFile ¶
IsFile verifies a path exists and is a file. It will optionally check if a file is not empty. An os file not exists check can be done with os.IsNotExist(err) which acts on error from os.Stat().
func MustUserHomeDir ¶
func ReadDirMore ¶
func ReadDirRxSubmatch ¶
func ReadDirRxSubmatch(dir string, rx *regexp.Regexp, subMatchIdx uint, inclDirs, inclFiles, inclEmptyFiles bool) (map[string][]os.DirEntry, error)
ReadDirRxSubmatch takes a directory, regular expression and boolean to indicate whether to include zero size files and returns the greatest of a single match in the regular expression.
func ReadDirRxSubmatchCaptureGreatest ¶
func ReadDirRxSubmatchCaptureGreatest(dir string, rx *regexp.Regexp, subMatchIdx uint, inclDirs, inclFiles, inclEmptyFiles bool) (string, error)
ReadDirRxSubmatchCaptureGreatest takes a directory, regular expression and returns the greatest of a single submatch in the regular expression.
func ReadDirRxSubmatchCaptures ¶
func ReadDirRxSubmatchCaptures(dir string, rx *regexp.Regexp, subMatchIdx uint, inclDirs, inclFiles, inclEmptyFiles bool) ([]string, error)
ReadDirRxSubmatchCaptures takes a directory, regular expression and returns the greatest of captures from the regular expression.
func SortDirEntriesModTime ¶ added in v0.37.18
func SortDirEntriesModTime(files DirEntries)
SortDirEntriesModTime sorts `DirEntries` by last modified time. It will panic if an entry cannot retrieve `FileInfo` information.
func VisitFiles ¶ added in v0.39.5
Types ¶
type DirEntries ¶
DirEntries provides utility functions for `[]os.DirEntry`. Use as `entries := osutil.DirEntries(slice)“
func (DirEntries) Infos ¶
func (entries DirEntries) Infos() ([]os.FileInfo, error)
Infos returns a `[]os.FileInfo` slice.
func (DirEntries) Len ¶
func (entries DirEntries) Len() int
func (DirEntries) Less ¶
func (entries DirEntries) Less(i, j int) bool
func (DirEntries) Names ¶
func (entries DirEntries) Names(dir string, sortNames bool) []string
Names returns a slice of entry names. It can optionally add the directory path and sort the values.
func (DirEntries) Swap ¶
func (entries DirEntries) Swap(i, j int)
func (DirEntries) WriteFileNames ¶ added in v0.33.0
func (entries DirEntries) WriteFileNames(filename, dir string, sortNames bool, perm os.FileMode) error
WriteFileNames writes a text file with filenames, one per line.
type DirEntriesMore ¶
type DirEntriesMore []DirEntryMore
func ReadDirFiles ¶
func ReadDirFiles(dir string, inclDirs, inclFiles, recursive bool) (DirEntriesMore, error)
type DirEntryMore ¶
type FileInfoMore ¶
FileInfoMore provides a struct hold FileInfo with additional information.
func NewFileInfoMoreFromPath ¶
func NewFileInfoMoreFromPath(path string) (FileInfoMore, error)
NewFileInfoMoreFromPath returns a FileInfoMore struct populatig both FileInfo and ModAge (last modification time).