mirror of
https://github.com/nxshock/backuper.git
synced 2025-07-15 02:27:28 +05:00
* update logger routines * add index file support * split file masks and path masks
15 lines
232 B
Go
15 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
|
|
}
|