backuper/pattern.go
nxshock 19e809966a Rework
* update logger routines
* add index file support
* split file masks and path masks
2023-04-03 19:43:16 +05:00

16 lines
232 B
Go

package main
type Pattern struct {
// Root directory
Path string
// List of file name patterns
FileNamePatternList []string
// List of file path patterns
FilePathPatternList []string
// Recursive search
Recursive bool
}