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