2022-10-15 14:23:39 +00:00
|
|
|
package layout
|
2017-03-26 19:52:49 +00:00
|
|
|
|
|
|
|
import (
|
2023-10-01 09:40:12 +00:00
|
|
|
"github.com/restic/restic/internal/backend"
|
2017-03-26 19:52:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Layout computes paths for file name storage.
|
|
|
|
type Layout interface {
|
2023-10-01 09:40:12 +00:00
|
|
|
Filename(backend.Handle) string
|
|
|
|
Dirname(backend.Handle) string
|
|
|
|
Basedir(backend.FileType) (dir string, subdirs bool)
|
2017-03-26 19:52:49 +00:00
|
|
|
Paths() []string
|
2017-06-07 19:59:41 +00:00
|
|
|
Name() string
|
2017-03-26 19:52:49 +00:00
|
|
|
}
|