seaweedfs/weed/filer/filer.go

30 lines
910 B
Go
Raw Normal View History

2014-04-10 00:44:58 +08:00
package filer
2016-09-08 11:35:54 +08:00
import (
"errors"
)
type FileId string //file id in SeaweedFS
2014-04-10 00:44:58 +08:00
type FileEntry struct {
2014-05-13 13:57:23 +08:00
Name string `json:"name,omitempty"` //file name without path
Id FileId `json:"fid,omitempty"`
2014-04-10 00:44:58 +08:00
}
2018-05-05 17:01:50 +08:00
type DirectoryName string
2014-04-10 00:44:58 +08:00
type Filer interface {
CreateFile(fullFileName string, fid string) (err error)
FindFile(fullFileName string) (fid string, err error)
DeleteFile(fullFileName string) (fid string, err error)
//Optional functions. embedded filer support these
2018-05-05 17:01:50 +08:00
ListDirectories(dirPath string) (dirs []DirectoryName, err error)
2014-04-10 00:44:58 +08:00
ListFiles(dirPath string, lastFileName string, limit int) (files []FileEntry, err error)
DeleteDirectory(dirPath string, recursive bool) (err error)
Move(fromPath string, toPath string) (err error)
2018-05-05 17:01:50 +08:00
LookupDirectoryEntry(dirPath string, name string) (found bool, fileId string, err error)
2014-04-10 00:44:58 +08:00
}
2016-09-08 11:35:54 +08:00
var ErrNotFound = errors.New("filer: no entry is found in filer store")